import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { UiComponentEnum } from "./uicomponentenum.js"; export type Placeholder5 = string | number | boolean | { [k: string]: any; }; /** * Placeholder for the UI Schema Property */ export type Placeholder = string | number | boolean | { [k: string]: any; } | Array; export type UiSchemaProperty = { /** * Placeholder for the UI Schema Property */ placeholder?: string | number | boolean | { [k: string]: any; } | Array | null | undefined; /** * Component type for the UI Schema Property */ component: UiComponentEnum; /** * Properties of the UI Schema */ properties?: { [k: string]: UiSchemaProperty; } | undefined; }; /** @internal */ export declare const Placeholder5$inboundSchema: z.ZodType; export declare function placeholder5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Placeholder$inboundSchema: z.ZodType; export declare function placeholderFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UiSchemaProperty$inboundSchema: z.ZodType; export declare function uiSchemaPropertyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=uischemaproperty.d.ts.map