import type { PortableCrypto } from "./portable-crypto"; /** @internal */ export declare class BrowserCrypto implements PortableCrypto { private readonly subtle; constructor(); digestBase64(data: string): Promise; hmac(key: string, data: string): Promise; }