import { Readable } from 'stream';
export declare const hashReadableToB64Url: (stream: Readable, algorithm?: string) => Promise<string>;
export declare const hashReadableStreamToB64Url: (stream: ReadableStream, algorithm?: string) => Promise<string>;
export declare const hashBufferToB64Url: (buffer: Buffer, algorithm?: string) => string;
