import { z } from "zod"; import type { AgentTool } from "@kenkaiiii/gg-agent"; declare const FaceReframeParams: z.ZodObject<{ input: z.ZodString; output: z.ZodString; aspect: z.ZodEnum<{ "9:16": "9:16"; "1:1": "1:1"; "4:5": "4:5"; "16:9": "16:9"; }>; strategy: z.ZodOptional>; sampleFps: z.ZodOptional; smoothingWindowSec: z.ZodOptional; videoCodec: z.ZodOptional; crf: z.ZodOptional; }, z.core.$strip>; /** * face_reframe — file-only face-tracked vertical reframe. Pairs with * reformat_timeline (NLE-side timeline reflow) for the full short-form * pipeline: NLE picks the timeline geometry, this tool bakes a follow-the- * subject crop into a delivery-ready mp4. */ export declare function createFaceReframeTool(cwd: string): AgentTool; export {}; //# sourceMappingURL=face-reframe.d.ts.map