import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const GetApiV3RewardNodeProvidersFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3RewardNodeProvidersFormat = ClosedEnum; export type GetApiV3RewardNodeProvidersRequest = { maxRewardNodeProviderIndex?: number | null | undefined; format?: GetApiV3RewardNodeProvidersFormat | undefined; offset?: number | undefined; limit?: number | undefined; }; /** @internal */ export declare const GetApiV3RewardNodeProvidersFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3RewardNodeProvidersFormat$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiV3RewardNodeProvidersFormat$ { /** @deprecated use `GetApiV3RewardNodeProvidersFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3RewardNodeProvidersFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3RewardNodeProvidersRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3RewardNodeProvidersRequest$Outbound = { max_reward_node_provider_index: number | null; format: string; offset: number; limit: number; }; /** @internal */ export declare const GetApiV3RewardNodeProvidersRequest$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 GetApiV3RewardNodeProvidersRequest$ { /** @deprecated use `GetApiV3RewardNodeProvidersRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3RewardNodeProvidersRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3RewardNodeProvidersRequest$Outbound` instead. */ type Outbound = GetApiV3RewardNodeProvidersRequest$Outbound; } export declare function getApiV3RewardNodeProvidersRequestToJSON(getApiV3RewardNodeProvidersRequest: GetApiV3RewardNodeProvidersRequest): string; export declare function getApiV3RewardNodeProvidersRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3rewardnodeproviders.d.ts.map