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<any>;
/** @internal */
export declare const CustomProperty$inboundSchema: z.ZodType<CustomProperty, z.ZodTypeDef, unknown>;
/** @internal */
export type CustomProperty$Outbound = string | number | boolean | {
    [k: string]: any;
} | Array<any>;
/** @internal */
export declare const CustomProperty$outboundSchema: z.ZodType<CustomProperty$Outbound, z.ZodTypeDef, CustomProperty>;
export declare function customPropertyToJSON(customProperty: CustomProperty): string;
export declare function customPropertyFromJSON(jsonString: string): SafeParseResult<CustomProperty, SDKValidationError>;
//# sourceMappingURL=customproperty.d.ts.map