import { z } from "zod"; import type { AgentTool } from "@kenkaiiii/gg-agent"; import type { VideoHost } from "../core/hosts/types.js"; declare const PreRenderCheckParams: z.ZodObject<{ loudnessSource: z.ZodOptional; loudnessTarget: z.ZodOptional>; expectCaptions: z.ZodOptional; }, z.core.$strip>; interface CheckIssue { severity: "ok" | "warn" | "block"; note: string; } export declare function createPreRenderCheckTool(host: VideoHost, cwd: string): AgentTool; export type { CheckIssue }; //# sourceMappingURL=pre-render-check.d.ts.map