import { ServiceStatusEnum } from './ServiceStatusEnum';
/** Information about the different components available in the region */
export interface Component {
    /** Endpoint URL */
    endpoint: string;
    /** Service name */
    name: string;
    /** Service status */
    status: ServiceStatusEnum;
}
//# sourceMappingURL=Component.d.ts.map