import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CheckboxFieldConfig = { /** * The markdown text to display for the checkbox. */ label?: string | undefined; }; /** @internal */ export declare const CheckboxFieldConfig$inboundSchema: z.ZodType; /** @internal */ export type CheckboxFieldConfig$Outbound = { label?: string | undefined; }; /** @internal */ export declare const CheckboxFieldConfig$outboundSchema: z.ZodType; export declare function checkboxFieldConfigToJSON(checkboxFieldConfig: CheckboxFieldConfig): string; export declare function checkboxFieldConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=checkboxfieldconfig.d.ts.map