interface Address { /** * */ country?: string; /** * */ state?: string; /** * */ city?: string; /** * */ street?: string; /** * */ zip?: string; } export default Address;