type AddressProps = { street?: string; street2?: string; city?: string; state?: string; zip?: string; country?: string; }; export declare const Address: ({ street, street2, city, state, zip, country, }: AddressProps) => import("react/jsx-runtime").JSX.Element; export {};