/** A structure describing current housing options */
export interface Options {
    /** Number of APC connected to this housing bay */
    apcCount: number;
    /** Is this housing bay have handsneyes service */
    handsneyes: boolean;
    /** High Availability routing service offer */
    highAvailabilityRouting: string;
}
//# sourceMappingURL=Options.d.ts.map