export declare class AddressDTO {
    street: string;
    number: string;
    city: string;
    state: string;
    zip_code: string;
}
