/** * Video generation tool implementation */ import { type GenerateVideoParams, type VideoGenerationResult } from '../types/tools.js'; /** * Options for video generation */ export interface GenerateVideoOptions { pollInterval?: number; maxPollAttempts?: number; onProgress?: (status: string, attempt: number, maxAttempts: number) => void; } /** * Generate a video from text prompt or image */ export declare function generateVideo(apiKey: string, params: GenerateVideoParams, options?: GenerateVideoOptions): Promise; /** * Format generation result for display */ export declare function formatGenerateResult(result: VideoGenerationResult): string; //# sourceMappingURL=generate.d.ts.map