export declare class AddressDTO {
    readonly street: string;
    readonly number: string;
    readonly city: string;
    readonly state: string;
    readonly zip_code: string;
    readonly country: string;
    readonly phone_number?: string;
}
