import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type GetAllCollectionsRequest = { /** * Names of the blockchain networks. If no one specified, data from all blockchains will be returned */ blockchains?: Array | undefined; /** * Continuation token from the previous response */ continuation?: string | undefined; /** * The number of items to return */ size?: number | undefined; }; /** @internal */ export declare const GetAllCollectionsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetAllCollectionsRequest$Outbound = { blockchains?: Array | undefined; continuation?: string | undefined; size?: number | undefined; }; /** @internal */ export declare const GetAllCollectionsRequest$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 GetAllCollectionsRequest$ { /** @deprecated use `GetAllCollectionsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetAllCollectionsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetAllCollectionsRequest$Outbound` instead. */ type Outbound = GetAllCollectionsRequest$Outbound; } export declare function getAllCollectionsRequestToJSON(getAllCollectionsRequest: GetAllCollectionsRequest): string; export declare function getAllCollectionsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getallcollections.d.ts.map