import { QPQConfigAdvancedSettings, QPQConfigSetting } from 'quidproquo-core'; export interface QPQConfigAdvancedCertificateSettings extends QPQConfigAdvancedSettings { } export interface CertificateQPQWebServerConfigSetting extends QPQConfigSetting { onRootDomain: boolean; subdomain?: string; rootDomain: string; } export declare const defineCertificate: (onRootDomain: boolean, rootDomain: string, subdomain?: string, options?: QPQConfigAdvancedCertificateSettings) => CertificateQPQWebServerConfigSetting;