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 GetApiV3SubnetsFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3SubnetsFormat = ClosedEnum; export type GetApiV3SubnetsRequest = { /** * Data Center ID */ dcId?: string | null | undefined; format?: GetApiV3SubnetsFormat | undefined; }; /** @internal */ export declare const GetApiV3SubnetsFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3SubnetsFormat$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 GetApiV3SubnetsFormat$ { /** @deprecated use `GetApiV3SubnetsFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3SubnetsFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3SubnetsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3SubnetsRequest$Outbound = { dc_id: string | null; format: string; }; /** @internal */ export declare const GetApiV3SubnetsRequest$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 GetApiV3SubnetsRequest$ { /** @deprecated use `GetApiV3SubnetsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3SubnetsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3SubnetsRequest$Outbound` instead. */ type Outbound = GetApiV3SubnetsRequest$Outbound; } export declare function getApiV3SubnetsRequestToJSON(getApiV3SubnetsRequest: GetApiV3SubnetsRequest): string; export declare function getApiV3SubnetsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3subnets.d.ts.map