/** * `SchemaRecipe` — the declarative definition of an Agentic Studio * structured-output schema. (`.schema.ts` — the resource here * happens to be a "schema" itself.) */ import { z } from "zod"; export declare const SchemaRecipeSchema: z.ZodObject<{ name: z.ZodString; description: z.ZodOptional; schema: z.ZodRecord; strict: z.ZodDefault; tags: z.ZodDefault>; }, z.core.$strip>; /** A validated structured-output-schema recipe. */ export type SchemaRecipe = z.infer;