export declare namespace ServerState {
    const UNKNOWN = 0;
    const STARTING = 1;
    const STARTED = 2;
    const RUNNING = 3;
    const STOPPING = 4;
    const STOPPED = 5;
    const ANALYZING = 6;
}
