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