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