import type { Log } from '../types/ffmpeg-concat.js'; import type { Theme } from './init-frames.js'; import { type ProgressFunction } from './on-progress.js'; interface TranscodeVideoOpts { args?: string[]; log?: Log; audio?: string; frameFormat: string; framePattern: string; output: string; verbose: boolean; theme: Theme; onProgress: ProgressFunction; } export declare const transcodeVideo: ({ frameFormat, framePattern, log, onProgress, output, theme, verbose, args, audio }: TranscodeVideoOpts) => Promise; export {}; //# sourceMappingURL=transcode-video.d.ts.map