import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { HttpRepeatedHeaders } from "./httprepeatedheaders.js"; export type Ssdp = { headers?: { [k: string]: HttpRepeatedHeaders; } | undefined; upnpUrl?: string | undefined; }; /** @internal */ export declare const Ssdp$inboundSchema: z.ZodType; export declare function ssdpFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ssdp.d.ts.map