import { z } from "zod"; import type { AgentTool } from "@kenkaiiii/gg-agent"; import type { VideoHost } from "../core/hosts/types.js"; declare const MatchClipColorParams: z.ZodObject<{ referenceVideo: z.ZodString; referenceAtSec: z.ZodNumber; targetClipId: z.ZodString; targetAtSec: z.ZodNumber; nodeIndex: z.ZodOptional; detail: z.ZodOptional>; model: z.ZodOptional; applyAutomatically: z.ZodOptional; }, z.core.$strip>; /** * match_clip_color — non-baked skin-tone match (Resolve only). Derives the * same vision-tuned grade as `grade_skin_tones` but pipes the CDL portion * through `host.setPrimaryCorrection`. The grade is non-destructive (lives * in the clip's grading node, not in the file). * * `applyAutomatically` defaults to false: the tool returns the grade and * lets the agent decide. When true and confidence ≥ 0.4 the CDL is * applied; below 0.4 it's still returned but skipped with a warning. */ export declare function createMatchClipColorTool(host: VideoHost, cwd: string): AgentTool; export {}; //# sourceMappingURL=match-clip-color.d.ts.map