import { z } from "zod"; import type { AgentTool } from "@kenkaiiii/gg-agent"; declare const RewriteHookParams: z.ZodObject<{ currentHook: z.ZodString; videoTopic: z.ZodString; transcriptExcerpt: z.ZodOptional; pattern: z.ZodOptional>; model: z.ZodOptional; }, z.core.$strip>; /** * rewrite_hook — propose 3 hook rewrites using a viral pattern. * * The agent surfaces the candidates to the user — does NOT auto-apply * (we don't generate footage). Use when `analyze_hook` returns score * < 60 or when the user says "the opener feels weak." */ export declare function createRewriteHookTool(_cwd: string): AgentTool; export {}; //# sourceMappingURL=rewrite-hook.d.ts.map