import { ServerState } from './server-state';
import { IServer } from '@nestcloud/common';
export declare class Server implements IServer {
    id: string;
    name: string;
    address: string;
    port: string;
    zone?: string;
    state: ServerState;
    constructor(address: string, port: string);
}
