/** Stair details of a Building */
export interface BuildingStair {
    /** List of floor indentifier, "_NA_" if no identifier is available */
    floors: string[];
    /** Stair identifier, "_NA_" if no identifier is available */
    stair: string;
}
//# sourceMappingURL=BuildingStair.d.ts.map