HttpsOptions: {
    alpnProtocols?: string[];
    rejectUnauthorized?: NativeRequestOptions["rejectUnauthorized"];
    checkServerIdentity?: CheckServerIdentityFunction;
    certificateAuthority?: SecureContextOptions["ca"];
    key?: SecureContextOptions["key"];
    certificate?: SecureContextOptions["cert"];
    passphrase?: SecureContextOptions["passphrase"];
    pfx?: PfxType;
    ciphers?: SecureContextOptions["ciphers"];
    honorCipherOrder?: SecureContextOptions["honorCipherOrder"];
    minVersion?: SecureContextOptions["minVersion"];
    maxVersion?: SecureContextOptions["maxVersion"];
    signatureAlgorithms?: SecureContextOptions["sigalgs"];
    tlsSessionLifetime?: SecureContextOptions["sessionTimeout"];
    dhparam?: SecureContextOptions["dhparam"];
    ecdhCurve?: SecureContextOptions["ecdhCurve"];
    certificateRevocationLists?: SecureContextOptions["crl"];
}

Type declaration