import { z } from "zod"; export declare const GoalConfigSchema: z.ZodObject<{ enabled: z.ZodDefault; auto_start: z.ZodDefault; default_max_iterations: z.ZodDefault; }, z.core.$strip>; export type GoalConfig = z.infer;