import type { FrameFormat } from '../types/ffmpeg-concat.js'; import type { ProgressFunction } from './on-progress.js'; import type { Frame, Theme } from './init-frames.js'; interface RenderFramesOpts { frameFormat: FrameFormat; frames: Frame[]; outputDir: string; theme: Theme; onProgress: ProgressFunction; } export declare const renderFrames: ({ frameFormat, frames, onProgress, outputDir, theme }: RenderFramesOpts) => Promise; export {}; //# sourceMappingURL=render-frames.d.ts.map