import { z } from "zod"; type FieldType = "string" | "number" | "boolean"; type Form = { title: string; fields: { type: FieldType; title: string; required: boolean; }[]; }; declare const Form: z.ZodObject<{ id: z.ZodString; schema: z.ZodObject<{ jsonSchema: z.ZodString; uiSchema: z.ZodString; }, "strip", z.ZodTypeAny, { jsonSchema: string; uiSchema: string; }, { jsonSchema: string; uiSchema: string; }>; }, "strip", z.ZodTypeAny, { id: string; schema: { jsonSchema: string; uiSchema: string; }; }, { id: string; schema: { jsonSchema: string; uiSchema: string; }; }>; export declare const EditSchemaScreen: ({ form: [form, setForm], }: { form?: [Form | null | undefined, import("react").Dispatch>] | undefined; }) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=EditSchemaScreen.d.ts.map