export declare namespace Ssl { type Options = { keyfile: string; certfile: string; cafile?: string; }; } export declare const Ssl: { maybeCreate: typeof maybeCreate; }; declare function maybeCreate({ keyfile, certfile, cafile }?: Partial): Ssl.Options | undefined; export {}; //# sourceMappingURL=ssl.d.ts.map