import Forge from '@vilic/node-forge'; export declare function ensureCACertificate(certPath: string, keyPath: string): Promise<{ cert: Forge.pki.Certificate; key: Forge.pki.PrivateKey; pemCert: string; pemKey: string; }>; export declare function getSelfSignedCertificate(caCert: Forge.pki.Certificate, caKey: Forge.pki.PrivateKey, commonName: string): Promise<{ cert: string; key: string; }>;