import { Entity } from '../index.js';
export type Address = {
    country?: Entity.Country;
    addressLine1: string;
    addressLine2: string;
    city?: string;
    province?: string;
};
