/** Available servers states */
export interface ServerState {
    /** Layer5-7 code, if available */
    checkCode?: string;
    /** Status of last health check */
    checkStatus?: string;
    /** Time of last health check */
    checkTime?: string;
    /** Id of your instance */
    instanceId: number;
    /** Last health check contents or textual error */
    lastCheckContent?: string;
    /** Status */
    status?: string;
}
//# sourceMappingURL=ServerState.d.ts.map