import type { AudioFile } from "../taglib/audio-file-interface.js"; import type { AudioFileInput, OpenOptions } from "../types.js"; export declare function withAudioFile(file: AudioFileInput, fn: (audioFile: AudioFile) => T | Promise, options?: OpenOptions): Promise; export declare function withAudioFileSave(file: AudioFileInput, fn: (audioFile: AudioFile) => void): Promise; export declare function withAudioFileSaveToFile(file: string, fn: (audioFile: AudioFile) => void): Promise; //# sourceMappingURL=with-audio-file.d.ts.map