import { DIntegrityParams } from '../types.js';
export declare class DIntegrity {
    static sha512Integrity({ format, data }: DIntegrityParams): Promise<string>;
    static sha512IntegrityStream(stream: ReadableStream<Uint8Array>): Promise<string>;
    static sha512IntegrityFile(tgzFilepath: string): Promise<string>;
}
//# sourceMappingURL=integrity.d.ts.map