/** Address */
export interface Address {
    /** Name of the building, if any */
    building?: string;
    /** City name */
    city: string;
    /** Identifier of the door, if any */
    door?: string;
    /** Identifier of the floor, if any */
    floor?: string;
    /** Name of the housing complex, if any */
    housingComplex?: string;
    /** INSEE code */
    inseeCode: string;
    /** Owner name, this information can be restricted */
    ownerName?: string;
    /** Identifier of the stair, if any */
    stairs?: string;
    /** Street code, an unique identifier of the street, hidden for unlisted number */
    streetCode?: string;
    /** Street name, hidden for unlisted number */
    streetName?: string;
    /** Street number, usually a number and an indication if applicable (B for bis, T for ter, etc...) and hidden for unlisted number */
    streetNumber?: string;
    /** ZIP code */
    zipCode: string;
}
//# sourceMappingURL=Address.d.ts.map