/** * Video remix tool implementation */ import { type RemixVideoParams, type VideoGenerationResult } from '../types/tools.js'; /** * Remix an existing video with a new prompt */ export declare function remixVideo(apiKey: string, params: RemixVideoParams, pollInterval?: number, maxPollAttempts?: number): Promise; /** * Format remix result for display */ export declare function formatRemixResult(result: VideoGenerationResult): string; //# sourceMappingURL=remix.d.ts.map