import { type PakIngestionOptions, type PakIngestionResult, type PakSource } from './ingestion.js'; import { VirtualFileSystem } from './vfs.js'; export declare function filesToPakSources(files: Iterable): PakSource[]; export declare function ingestPakFiles(vfs: VirtualFileSystem, files: Iterable, options?: PakIngestionOptions): Promise; export declare function wireDropTarget(element: HTMLElement, handler: (files: File[]) => void): () => void; export declare function wireFileInput(input: HTMLInputElement, handler: (files: FileList) => void): () => void; //# sourceMappingURL=browserIngestion.d.ts.map