import React from 'react'; interface ShippingProps { method: string; cost: string; } export declare function Shipping({ method, cost }: ShippingProps): React.JSX.Element; export {};