export declare function getAlgo(type: string): AesKeyAlgorithm | HmacImportParams; export declare function getOps(type: string): string[]; export declare function browserExportKey(cryptoKey: CryptoKey, type?: string): Promise; export declare function browserImportKey(buffer: Uint8Array, type?: string): Promise; export declare function browserAesEncrypt(iv: Uint8Array, key: Uint8Array, data: Uint8Array): Promise; export declare function browserAesDecrypt(iv: Uint8Array, key: Uint8Array, data: Uint8Array): Promise; export declare function browserHmacSha256Sign(key: Uint8Array, data: Uint8Array): Promise; export declare function browserHmacSha512Sign(key: Uint8Array, data: Uint8Array): Promise; export declare function browserSha256(data: Uint8Array): Promise; export declare function browserSha512(data: Uint8Array): Promise; //# sourceMappingURL=browser.d.ts.map