import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomProperty = string | number | boolean | { [k: string]: any; } | Array; /** @internal */ export declare const CustomProperty$inboundSchema: z.ZodType; /** @internal */ export type CustomProperty$Outbound = string | number | boolean | { [k: string]: any; } | Array; /** @internal */ export declare const CustomProperty$outboundSchema: z.ZodType; export declare function customPropertyToJSON(customProperty: CustomProperty): string; export declare function customPropertyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customproperty.d.ts.map