import { IServer, ServerConfiguration } from './types'; export { ServerConfiguration }; export { IServer }; export * from './generate-html-page'; declare type ServerOptions = { configuration?: ServerConfiguration; isHTTPS?: boolean; sameThread?: boolean; }; export declare class Server { static updateLocalhost(content: any, port: number): any; private static createIndependentServer; private static createSameThreadServer; static create(options?: ServerOptions): Promise; } //# sourceMappingURL=index.d.ts.map