import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SupportedProperty = { /** * Name of the property in our Unified API. */ unifiedProperty?: string | undefined; /** * List of child properties of the unified property. */ childProperties?: Array | undefined; }; /** @internal */ export declare const SupportedProperty$inboundSchema: z.ZodType; /** @internal */ export type SupportedProperty$Outbound = { unified_property?: string | undefined; child_properties?: Array | undefined; }; /** @internal */ export declare const SupportedProperty$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SupportedProperty$ { /** @deprecated use `SupportedProperty$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SupportedProperty$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SupportedProperty$Outbound` instead. */ type Outbound = SupportedProperty$Outbound; } export declare function supportedPropertyToJSON(supportedProperty: SupportedProperty): string; export declare function supportedPropertyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=supportedproperty.d.ts.map