/** * slowmo recreate subcommand * * Analyzes videos/GIFs and generates animation code using AI. * * @example * slowmo recreate ./animation.mp4 --runtime framer-motion --api-key $GEMINI_API_KEY * * @example * # Using environment variable * export GEMINI_API_KEY=your-api-key * slowmo recreate ./video.mp4 -r gsap */ export declare function runRecreate(args: string[]): Promise;