import React from "react";
export interface AddressInfoProps {
name?: string;
streetAddress: string;
streetAddress2?: string;
careOf?: string;
postalCode: string;
city: string;
region?: string;
countryCode: string;
}
export declare const AddressInfo: React.FC<AddressInfoProps>;