import { PoolServerState, JobServerState, Parameter } from "./../index";
export interface ServerStateInterface {
    instances?: PoolServerState;
    jobs?: JobServerState;
    lastUpdate?: number;
}
export declare class ServerState implements ServerStateInterface, Parameter {
    instances?: PoolServerState;
    jobs?: JobServerState;
    lastUpdate?: number;
    constructor(data: any);
    static getInstancesDescription(): string;
    static getJobsDescription(): string;
    static getLastUpdateDefault(): number;
    static getLastUpdateDescription(): string;
    static fromJson(data: any): ServerState;
    toJson(): any;
    clone(): ServerState;
}
