export type EncryptedBlob = { ciphertext: string; salt: string; iv: string; tag: string; }; export declare function encryptSecret(plaintext: string, password: string): EncryptedBlob; export declare function decryptSecret(blob: EncryptedBlob, password: string): string; //# sourceMappingURL=crypto.d.ts.map