import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ChromecastNamespace } from "./chromecastnamespace.js"; export type ChromecastApplication = { appId?: string | undefined; appType?: string | undefined; displayName?: string | undefined; namespaces?: Array | null | undefined; sessionId?: string | undefined; transportId?: string | undefined; }; /** @internal */ export declare const ChromecastApplication$inboundSchema: z.ZodType; export declare function chromecastApplicationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=chromecastapplication.d.ts.map