import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FloatValue } from "./floatvalue.js"; export type ChromecastVolume = { controlType?: string | undefined; level?: number | undefined; muted?: boolean | undefined; stepInterval?: FloatValue | undefined; }; /** @internal */ export declare const ChromecastVolume$inboundSchema: z.ZodType; export declare function chromecastVolumeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=chromecastvolume.d.ts.map