import React from "react"; export interface AddressType { id: string; city: string; cityArea?: string; companyName?: string; country: { code: string; country: string; }; countryArea?: string; firstName: string; lastName: string; phone: string; postalCode: string; streetAddress1: string; streetAddress2?: string; } export interface AddressProps { address: AddressType; } declare const Address: React.FC; export default Address;