/// <reference types="node" />
import * as https from 'https';
import * as http from 'http';
export declare class ServerCreator {
    createHttp(app: any): http.Server;
    createHttps(app: any, options: Record<string, string>): https.Server;
}
