/// <reference types="node" />
interface IHttpsServerOptions {
    ca: Buffer;
    cert: Buffer;
    key: Buffer;
}
export declare function getHttpsServerOptions(daysUntilCertificateExpires?: number, domains?: string[], machine?: boolean): Promise<IHttpsServerOptions>;
export {};
