import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { CollectionsSearchFilter, CollectionsSearchFilter$Outbound } from "./collectionssearchfilter.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Complex search request for collections */ export type CollectionsSearchRequest = { /** * Number of entities returned */ size?: number | undefined; /** * Continuation token to paginate collections search result */ continuation?: string | undefined; /** * Filter for collections search query */ filter: CollectionsSearchFilter; }; /** @internal */ export declare const CollectionsSearchRequest$inboundSchema: z.ZodType; /** @internal */ export type CollectionsSearchRequest$Outbound = { size: number; continuation?: string | undefined; filter: CollectionsSearchFilter$Outbound; }; /** @internal */ export declare const CollectionsSearchRequest$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 CollectionsSearchRequest$ { /** @deprecated use `CollectionsSearchRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CollectionsSearchRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CollectionsSearchRequest$Outbound` instead. */ type Outbound = CollectionsSearchRequest$Outbound; } export declare function collectionsSearchRequestToJSON(collectionsSearchRequest: CollectionsSearchRequest): string; export declare function collectionsSearchRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectionssearchrequest.d.ts.map