export declare const DEVCERT_SKIP_POST_CA_REMOVAL_COMMANDS: boolean; export declare const DEVCERT_SKIP_POST_CA_PLACEMENT_COMMANDS: boolean; export declare const DEVCERT_SKIP_COPY_CA_TO_TRUST_ROOTS: boolean; export declare const DEVCERT_CUSTOM_CA_ROOT_FOLDERS: string[] | undefined; export declare const IS_MAC: boolean; export declare const IS_LINUX: boolean; export declare const IS_WINDOWS: boolean; export declare const CONFIG_DIR: string; export declare const makeConfigPath: (...pathSegments: string[]) => string; export declare const DEFAULT_REMOTE_PORT = 2702; export declare const DOMAINS_DIR: string; export declare const CA_VERSION_FILE_PATH: string; export declare const OPENSSL_SERIAL_FILE_PATH: string; export declare const OPENSSL_DB_PATH: string; export declare const OPENSSL_CONFIG_DIR: string; export declare const CA_SELF_SIGN_CONFIG_PATH: string; export declare function withDomainSigningRequestConfig(commonName: string, { alternativeNames }: { alternativeNames: string[]; }, cb: (filepath: string) => Promise | void): Promise; export declare function withDomainCertificateConfig(commonName: string, alternativeNames: string[], cb: (filepath: string) => Promise | void): Promise; export declare const ROOT_CA_DIR: string; export declare const ROOT_CA_KEY_PATH: string; export declare const ROOT_CA_CERT_PATH: string; export declare function getLegacyConfigDir(): string; export declare function ensureConfigDirs(): void;