import * as http from 'http'; interface IOptions { useLocalIp?: boolean; port?: number; https?: boolean; host?: string; socket?: boolean; public?: string; } export declare function createDomain(options: IOptions, server?: http.Server): string; export {};