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 GetApiV3NodeProvidersCountIncludeNodeType: { readonly ApiBoundary: "API_BOUNDARY"; readonly Replica: "REPLICA"; }; export type GetApiV3NodeProvidersCountIncludeNodeType = ClosedEnum; export type GetApiV3NodeProvidersCountRequest = { /** * Only Assigned Nodes */ onlyAssignedNodes?: boolean | undefined; /** * Node Types */ includeNodeType?: Array | undefined; }; /** @internal */ export declare const GetApiV3NodeProvidersCountIncludeNodeType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3NodeProvidersCountIncludeNodeType$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 GetApiV3NodeProvidersCountIncludeNodeType$ { /** @deprecated use `GetApiV3NodeProvidersCountIncludeNodeType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly ApiBoundary: "API_BOUNDARY"; readonly Replica: "REPLICA"; }>; /** @deprecated use `GetApiV3NodeProvidersCountIncludeNodeType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly ApiBoundary: "API_BOUNDARY"; readonly Replica: "REPLICA"; }>; } /** @internal */ export declare const GetApiV3NodeProvidersCountRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3NodeProvidersCountRequest$Outbound = { only_assigned_nodes: boolean; include_node_type?: Array | undefined; }; /** @internal */ export declare const GetApiV3NodeProvidersCountRequest$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 GetApiV3NodeProvidersCountRequest$ { /** @deprecated use `GetApiV3NodeProvidersCountRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3NodeProvidersCountRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3NodeProvidersCountRequest$Outbound` instead. */ type Outbound = GetApiV3NodeProvidersCountRequest$Outbound; } export declare function getApiV3NodeProvidersCountRequestToJSON(getApiV3NodeProvidersCountRequest: GetApiV3NodeProvidersCountRequest): string; export declare function getApiV3NodeProvidersCountRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3nodeproviderscount.d.ts.map