/** The statuses of a Load Balancer component */
export interface ComponentStatus {
    /** The number of component with status error */
    error: number;
    /** The number of component with status ok */
    ok: number;
    /** The number of component with status unknown */
    unknown: number;
    /** The number of component with status warn */
    warn: number;
}
//# sourceMappingURL=ComponentStatus.d.ts.map