/** * File processing helpers for reading audio metadata */ import type { TagLib } from "../taglib.js"; import type { AudioFileMetadata } from "./types.js"; export declare function processBatch(files: string[], processor: (path: string) => Promise, concurrency: number): Promise; export declare function processFileWithTagLib(filePath: string, taglib: TagLib, includeProperties: boolean, onProgress?: (processed: number, total: number, currentFile: string) => void, processed?: { count: number; }, totalFound?: number): Promise; //# sourceMappingURL=file-processors.d.ts.map