import { CrossfireFrame } from "../frame"; import { UnsupportedOrInvalid } from "./unsupported-or-invalid"; export declare class Temp { /** uint8 - source of the temperature data (e.g., 0 = FC including all ESCs, 1 = Ambient, etc.) */ tempSourceId: number; /** int16[] - up to 20 temperature values in deci-degree (tenths of a degree) Celsius (e.g., 250 = 25.0°C, -50 = -5.0°C) */ temperatures: number[]; syncByte: number; constructor( /** uint8 - source of the temperature data (e.g., 0 = FC including all ESCs, 1 = Ambient, etc.) */ tempSourceId?: number, /** int16[] - up to 20 temperature values in deci-degree (tenths of a degree) Celsius (e.g., 250 = 25.0°C, -50 = -5.0°C) */ temperatures?: number[], syncByte?: number); static get payloadSize(): number; get frameType(): 13; get crossfireFrame(): CrossfireFrame; static fromFrame(frame: CrossfireFrame): Temp | UnsupportedOrInvalid; } //# sourceMappingURL=temp.d.ts.map