import { z } from "zod"; export declare const CreateAgentSchema: z.ZodObject<{ id: z.ZodOptional; name: z.ZodString; modelId: z.ZodString; }, z.core.$strip>; export declare const GetAgentSchema: z.ZodObject<{ id: z.ZodString; }, z.core.$strip>; export declare const UpdateAgentSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; modelId: z.ZodString; }, z.core.$strip>; export declare const DeleteAgentSchema: z.ZodObject<{ id: z.ZodString; }, z.core.$strip>; export declare const ListModelsSchema: z.ZodObject<{ modelProviderId: z.ZodString; }, z.core.$strip>;