import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DhcpdiscoverResponseParams } from "./dhcpdiscoverresponseparams.js"; export type Dhcpdiscover = { method?: string | undefined; params?: DhcpdiscoverResponseParams | undefined; }; /** @internal */ export declare const Dhcpdiscover$inboundSchema: z.ZodType; export declare function dhcpdiscoverFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=dhcpdiscover.d.ts.map