/** All components of an address */
export interface AddressDetail {
    /**  */
    building?: string;
    /**  */
    city: string;
    /**  */
    door?: string;
    /**  */
    firstName: string;
    /**  */
    floor?: string;
    /** Identifier of the city */
    inseeCode: string;
    /**  */
    lastName: string;
    /**  */
    numberStreet: string;
    /**  */
    residence?: string;
    /** Identifier of the street */
    rivoliCode: string;
    /**  */
    stairs?: string;
    /**  */
    street: string;
    /**  */
    zipCode: string;
}
//# sourceMappingURL=AddressDetail.d.ts.map