import { BaseScene } from '../scenes/base.js';
import type { VideoScene } from '../types/index.js';
export declare class VideoSceneRenderer extends BaseScene<VideoScene> {
    /**
     * Validate video scene configuration
     */
    validate(): boolean;
    /**
     * Render video scene to static image (first frame)
     */
    renderStatic(): Promise<string>;
    /**
     * Render video scene to video
     */
    renderVideo(): Promise<string>;
}
//# sourceMappingURL=video.d.ts.map