import fs from 'node:fs'; import { Readable } from 'node:stream'; export interface ArchiveContentEntry { name: string; content: string | Buffer | fs.ReadStream | Readable; } interface ArchiveResult { buffer: Buffer; hash: string; } /** * Creates a deterministic archive of the given files * * @param dirsAndFiles - Array of directory and file paths to include * @param contentToArchive - Array of content entries to include in the archive * @returns Promise resolving to archive result with buffer and hash */ export default function deterministicArchive(dirsAndFiles: Array, contentToArchive?: Array): Promise; export {}; //# sourceMappingURL=deterministicArchive.d.ts.map