import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { Blockchain } from "./blockchain.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Filter for collections search query */ export type CollectionsSearchFilter = { blockchains?: Array | undefined; text: string; }; /** @internal */ export declare const CollectionsSearchFilter$inboundSchema: z.ZodType; /** @internal */ export type CollectionsSearchFilter$Outbound = { blockchains?: Array | undefined; text: string; }; /** @internal */ export declare const CollectionsSearchFilter$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 CollectionsSearchFilter$ { /** @deprecated use `CollectionsSearchFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CollectionsSearchFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CollectionsSearchFilter$Outbound` instead. */ type Outbound = CollectionsSearchFilter$Outbound; } export declare function collectionsSearchFilterToJSON(collectionsSearchFilter: CollectionsSearchFilter): string; export declare function collectionsSearchFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectionssearchfilter.d.ts.map