/** * `WidgetRecipe` — the declarative definition of an Agentic Studio widget * (a configurable report/dashboard surface). */ import { z } from "zod"; /** A widget's declarative UI spec — a tree of typed elements. */ export declare const WidgetSpecSchema: z.ZodObject<{ root: z.ZodString; elements: z.ZodRecord; }, z.core.$strip>; export declare const WidgetRecipeSchema: z.ZodObject<{ name: z.ZodString; description: z.ZodOptional; spec: z.ZodObject<{ root: z.ZodString; elements: z.ZodRecord; }, z.core.$strip>; }, z.core.$strip>; /** A validated widget recipe. */ export type WidgetRecipe = z.infer;