import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MdnsResult } from "./mdnsresult.js"; export type Mdns = { multipleResponses?: boolean | undefined; names?: Array | null | undefined; results?: Array | null | undefined; }; /** @internal */ export declare const Mdns$inboundSchema: z.ZodType; export declare function mdnsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=mdns.d.ts.map