import { ReactNode } from 'react'; export type ShippingRowProps = { address?: ReactNode; onEdit?: () => void; editLabel?: string; emptyLabel?: string; }; export declare const ShippingRow: ({ address, onEdit, editLabel, emptyLabel, }: ShippingRowProps) => import("react").JSX.Element;