import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { Subnet, Subnet$Outbound } from "./subnet.js"; export type ListSubnetsResponse = { /** * Subnets */ data?: Array | undefined; /** * Next Cursor */ nextCursor?: string | undefined; /** * Previous Cursor */ previousCursor?: string | undefined; }; /** @internal */ export declare const ListSubnetsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListSubnetsResponse$Outbound = { data?: Array | undefined; next_cursor?: string | undefined; previous_cursor?: string | undefined; }; /** @internal */ export declare const ListSubnetsResponse$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 ListSubnetsResponse$ { /** @deprecated use `ListSubnetsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListSubnetsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListSubnetsResponse$Outbound` instead. */ type Outbound = ListSubnetsResponse$Outbound; } export declare function listSubnetsResponseToJSON(listSubnetsResponse: ListSubnetsResponse): string; export declare function listSubnetsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listsubnetsresponse.d.ts.map