import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { UiSchemaGroupEnum } from "./uischemagroupenum.js"; import { UiSchemaProperty } from "./uischemaproperty.js"; export type UiSchema = { /** * Group of the UI Schema */ group?: UiSchemaGroupEnum | undefined; /** * Properties of the UI Schema */ properties?: { [k: string]: UiSchemaProperty; } | undefined; }; /** @internal */ export declare const UiSchema$inboundSchema: z.ZodType; export declare function uiSchemaFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=uischema.d.ts.map