import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Network = { allocationType?: string | undefined; /** * A set of CIDRs describing the range. */ cidrs?: Array | null | undefined; created?: string | undefined; handle?: string | undefined; name?: string | undefined; updated?: string | undefined; }; /** @internal */ export declare const Network$inboundSchema: z.ZodType; export declare function networkFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=network.d.ts.map