export type FileIntegrity = { algorithm: 'SHA256'; hash: string; blockSize: number; blocks: string[]; }; export declare function getFileIntegrity(path: string): Promise;