import { ServerType } from '../interfaces';
export declare class ServerConfig {
    instanceId?: string;
    type: ServerType | any;
    options: any;
    onStart?: () => {};
    constructor(type: ServerType, options?: any);
}
