import { z } from "zod"; import type { AgentTool } from "@kenkaiiii/gg-agent"; declare const AddSfxAtCutsParams: z.ZodObject<{ input: z.ZodString; sfx: z.ZodString; output: z.ZodString; cutPoints: z.ZodArray; sfxGainDb: z.ZodOptional; duckDb: z.ZodOptional; minSpacingSec: z.ZodOptional; videoCodec: z.ZodOptional; }, z.core.$strip>; /** * add_sfx_at_cuts — drop a whoosh / pop / swoosh on every cut point * and mix it into the existing audio. The standard sound-design polish * on every retention-tuned vlog. One ffmpeg pass; video is copied * through untouched by default. * * Pair with `cut_filler_words` or `detect_silence` to feed cut points * automatically. */ export declare function createAddSfxAtCutsTool(cwd: string): AgentTool; export {}; //# sourceMappingURL=add-sfx-at-cuts.d.ts.map