import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpnpService = { controlUrl?: string | undefined; eventSubUrl?: string | undefined; scpdUrl?: string | undefined; serviceId?: string | undefined; serviceType?: string | undefined; }; /** @internal */ export declare const UpnpService$inboundSchema: z.ZodType; export declare function upnpServiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=upnpservice.d.ts.map