import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiV3SubnetsSubnetIdRequest = { /** * Subnet ID */ subnetId: string; }; /** @internal */ export declare const GetApiV3SubnetsSubnetIdRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3SubnetsSubnetIdRequest$Outbound = { subnet_id: string; }; /** @internal */ export declare const GetApiV3SubnetsSubnetIdRequest$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 GetApiV3SubnetsSubnetIdRequest$ { /** @deprecated use `GetApiV3SubnetsSubnetIdRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3SubnetsSubnetIdRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3SubnetsSubnetIdRequest$Outbound` instead. */ type Outbound = GetApiV3SubnetsSubnetIdRequest$Outbound; } export declare function getApiV3SubnetsSubnetIdRequestToJSON(getApiV3SubnetsSubnetIdRequest: GetApiV3SubnetsSubnetIdRequest): string; export declare function getApiV3SubnetsSubnetIdRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3subnetssubnetid.d.ts.map