/** Details of a street */
export interface Street {
    /** Street alternative code, a possible alternative identifier of the street */
    streetAltCode?: string;
    /** Street code, an unique identifier of the street */
    streetCode: string;
    /** Street name */
    streetName: string;
}
//# sourceMappingURL=Street.d.ts.map