/** * Service for cryptographic operations. */ export declare class CryptoService { /** * Create a random 256-bit secret encoded in base64. * * @returns {Promise} The base64 string. */ createSecret(): Promise; }