import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ChromecastApplication } from "./chromecastapplication.js"; import { ChromecastVolume } from "./chromecastvolume.js"; export type Chromecast = { applications?: Array | null | undefined; iconUrl?: string | undefined; isActiveInput?: boolean | undefined; protocolVersion?: number | undefined; statusText?: string | undefined; universalAppId?: string | undefined; volume?: ChromecastVolume | undefined; }; /** @internal */ export declare const Chromecast$inboundSchema: z.ZodType; export declare function chromecastFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=chromecast.d.ts.map