import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomDataValue = { displayLabel?: string | undefined; stringValue?: string | undefined; /** * list of strings for multi-value properties */ stringListValue?: Array | undefined; numberValue?: number | undefined; booleanValue?: boolean | undefined; }; /** @internal */ export declare const CustomDataValue$inboundSchema: z.ZodType; /** @internal */ export type CustomDataValue$Outbound = { displayLabel?: string | undefined; stringValue?: string | undefined; stringListValue?: Array | undefined; numberValue?: number | undefined; booleanValue?: boolean | undefined; }; /** @internal */ export declare const CustomDataValue$outboundSchema: z.ZodType; export declare function customDataValueToJSON(customDataValue: CustomDataValue): string; export declare function customDataValueFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customdatavalue.d.ts.map