import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomControlDto = { /** * Custom control values for the step. */ custom?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const CustomControlDto$inboundSchema: z.ZodType; /** @internal */ export type CustomControlDto$Outbound = { custom?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const CustomControlDto$outboundSchema: z.ZodType; export declare function customControlDtoToJSON(customControlDto: CustomControlDto): string; export declare function customControlDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customcontroldto.d.ts.map