import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { ExtendedTraitProperty, ExtendedTraitProperty$Outbound } from "./extendedtraitproperty.js"; export type ExtendedTraitProperties = { /** * Continuation token to paginate result */ continuation?: string | undefined; /** * List of ExtendedTraitProperty */ traits: Array; }; /** @internal */ export declare const ExtendedTraitProperties$inboundSchema: z.ZodType; /** @internal */ export type ExtendedTraitProperties$Outbound = { continuation?: string | undefined; traits: Array; }; /** @internal */ export declare const ExtendedTraitProperties$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 ExtendedTraitProperties$ { /** @deprecated use `ExtendedTraitProperties$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExtendedTraitProperties$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExtendedTraitProperties$Outbound` instead. */ type Outbound = ExtendedTraitProperties$Outbound; } export declare function extendedTraitPropertiesToJSON(extendedTraitProperties: ExtendedTraitProperties): string; export declare function extendedTraitPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=extendedtraitproperties.d.ts.map