import { Ssl } from './ssl'; import { parseQuery } from './utils'; export { parseQuery }; export declare namespace Server { type Origins = '*' | string[]; type Options = { root?: string; roots: Origins; port: number; origins: Origins; } & Partial; } export declare const Server: { create: typeof create; }; declare function create({ root, roots, port, origins, keyfile, certfile, cafile, }: Server.Options): Promise<{ destroy: () => Promise; }>; //# sourceMappingURL=index.d.ts.map