import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type QueryTraitsRequest = { /** * Trait keys for strict filtering (if not specified - all traits will be returned) */ keys?: Array | undefined; /** * Collections identifiers to which traits belong */ collectionIds: Array; /** * Return traits only for items owned by user */ owners?: Array | undefined; }; /** @internal */ export declare const QueryTraitsRequest$inboundSchema: z.ZodType; /** @internal */ export type QueryTraitsRequest$Outbound = { keys?: Array | undefined; collectionIds: Array; owners?: Array | undefined; }; /** @internal */ export declare const QueryTraitsRequest$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 QueryTraitsRequest$ { /** @deprecated use `QueryTraitsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `QueryTraitsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `QueryTraitsRequest$Outbound` instead. */ type Outbound = QueryTraitsRequest$Outbound; } export declare function queryTraitsRequestToJSON(queryTraitsRequest: QueryTraitsRequest): string; export declare function queryTraitsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=querytraits.d.ts.map