interface Terms { text: string; url: string; } interface List { title: string; list: string[]; } interface ShippingService { title: string; list: List[]; } interface Data { title: string; shippingCoupon: List; shippingService: ShippingService; terms: Terms; } interface Props { data: Data; onClose: () => void; open: boolean; } export declare const ShippingPolicyModal: ({ data, onClose, open }: Props) => import("react/jsx-runtime").JSX.Element; export {};