export declare class Address {
    id: number;
    streetAndNumber: string;
    city: string;
    state: string;
    zipCode: string;
    country: string;
    neighborhood: string;
    complemento: string;
}
