export interface CACredentials { key: string; cert: string; } /** * Get or create a CA certificate for MITM proxy interception. * Certs are persisted to disk so they can be installed in the system trust store. */ export declare function getOrCreateCA(certDir?: string): Promise; /** * Returns the path to the CA certificate file. */ export declare function getCertPath(certDir?: string): string; //# sourceMappingURL=certs.d.ts.map