import { Server } from 'net';
import { HttpApplicationOptions } from '../interface';
import type { RequestListener } from 'http';
export declare class ServerFactory {
    private static readonly _logger;
    static create(options?: HttpApplicationOptions, listener?: RequestListener): Server;
}
