import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DhcpdiscoverIpAddress = { defaultGateway?: string | undefined; dhcpEnable?: boolean | undefined; ipAddress?: string | undefined; linkLocalAddress?: string | undefined; subnetmask?: string | undefined; }; /** @internal */ export declare const DhcpdiscoverIpAddress$inboundSchema: z.ZodType; export declare function dhcpdiscoverIpAddressFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=dhcpdiscoveripaddress.d.ts.map