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