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