import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GeneralSubtreeIp = { /** * The first IP address in the range. */ begin?: string | undefined; /** * The CIDR specifying the subtree. */ cidr?: string | undefined; /** * The last IP address in the range. */ end?: string | undefined; /** * The subnet mask of the CIDR. */ mask?: string | undefined; }; /** @internal */ export declare const GeneralSubtreeIp$inboundSchema: z.ZodType; export declare function generalSubtreeIpFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=generalsubtreeip.d.ts.map