import { BrsValue, ValueKind, BrsBoolean } from "../BrsType"; import { BrsComponent } from "./BrsComponent"; import { BrsType } from ".."; export declare class RoDeviceInfoEvent extends BrsComponent implements BrsValue { readonly kind = ValueKind.Object; private readonly data; private readonly isStatusMsg; private readonly isCaptionModeMsg; constructor(data: any); toString(parent?: BrsType): string; equalTo(other: BrsType): BrsBoolean; /** Checks if the device status has changed. */ private readonly isStatusMessage; /** Indicates whether the user has changed the closed caption mode. */ private readonly isCaptionModeChanged; /** Returns an roAssociativeArray with the current status of the device or the caption mode. */ private readonly getInfo; }