export declare class DTOAddress {
    street: string;
    unit?: string | undefined;
    postalCode: string;
    city: string;
    province: string;
    country: string;
    isBusinessAddress?: boolean;
}
