import type { LogLevel } from '../log-level';
import type { CancelSignal } from '../make-cancel-signal';
import type { AudioChannelsAndDurationResultCache, DownloadMap } from './download-map';
export declare const getAudioChannelsAndDurationWithoutCache: ({ src, indent, logLevel, binariesDirectory, cancelSignal, }: {
    src: string;
    indent: boolean;
    logLevel: LogLevel;
    binariesDirectory: string | null;
    cancelSignal: CancelSignal | undefined;
}) => Promise<AudioChannelsAndDurationResultCache>;
export declare const getAudioChannelsAndDuration: ({ downloadMap, src, indent, logLevel, binariesDirectory, cancelSignal, }: {
    downloadMap: DownloadMap;
    src: string;
    indent: boolean;
    logLevel: LogLevel;
    binariesDirectory: string | null;
    cancelSignal: CancelSignal | undefined;
}) => Promise<AudioChannelsAndDurationResultCache>;
