import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type CountSubnetsResponse = { /** * Total */ total?: number | undefined; }; /** @internal */ export declare const CountSubnetsResponse$inboundSchema: z.ZodType; /** @internal */ export type CountSubnetsResponse$Outbound = { total?: number | undefined; }; /** @internal */ export declare const CountSubnetsResponse$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 CountSubnetsResponse$ { /** @deprecated use `CountSubnetsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CountSubnetsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CountSubnetsResponse$Outbound` instead. */ type Outbound = CountSubnetsResponse$Outbound; } export declare function countSubnetsResponseToJSON(countSubnetsResponse: CountSubnetsResponse): string; export declare function countSubnetsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=countsubnetsresponse.d.ts.map