Repository URL to install this package:
|
Version:
2.1.14 ▾
|
import React from 'react';
import { NO_OP } from 'exotic';
import { SingleShippingProps } from './typings';
import { defaultRenderButton, defaultRenderForm } from './renderProps';
declare class SingleShipping extends React.PureComponent<SingleShippingProps> {
static defaultProps: {
className: string;
renderButton: typeof defaultRenderButton;
renderForm: typeof defaultRenderForm;
onShipToMultipleAddress: typeof NO_OP;
onSubmit: typeof NO_OP;
};
render(): JSX.Element;
}
export { SingleShipping };
export default SingleShipping;