export interface TLSOut { ca: string; crt: string; key: string; pem: { ca: string; crt: string; key: string; }; } /** * Generates a self-signed CA and server certificate with Subject Alternative Names (SANs) for the K8s webhook. * * @param {string} name - The name to use for the server certificate's Common Name and SAN DNS entry. * @returns {TLSOut} - An object containing the Base64-encoded CA, server certificate, and server private key. */ export declare function genTLS(name: string): TLSOut; //# sourceMappingURL=tls.d.ts.map