export declare class Address {
    numero: string;
    street: string;
    commune: string;
    postcode?: number;
    coordinates?: any[];
}
