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 GetAllSyncRequest = { /** * Type of the blockchain network */ blockchain: models.Blockchain; /** * Continuation token from the previous response */ continuation?: string | undefined; /** * The number of orders to return */ size?: number | undefined; /** * Order sort */ sort?: models.SyncSort | undefined; }; /** @internal */ export declare const GetAllSyncRequest$inboundSchema: z.ZodType; /** @internal */ export type GetAllSyncRequest$Outbound = { blockchain: string; continuation?: string | undefined; size?: number | undefined; sort?: string | undefined; }; /** @internal */ export declare const GetAllSyncRequest$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 GetAllSyncRequest$ { /** @deprecated use `GetAllSyncRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetAllSyncRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetAllSyncRequest$Outbound` instead. */ type Outbound = GetAllSyncRequest$Outbound; } export declare function getAllSyncRequestToJSON(getAllSyncRequest: GetAllSyncRequest): string; export declare function getAllSyncRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getallsync.d.ts.map