import { MessageDefinition } from '../../../core/types.js';

declare const COMPASSMOT_STATUS_ID = 177;
declare const COMPASSMOT_STATUS_CRC_EXTRA = 0;
declare const CompassmotStatusDefinition: MessageDefinition;
interface MessageCompassmotStatus {
    current: number;
    compensationx: number;
    compensationy: number;
    compensationz: number;
    throttle: number;
    interference: number;
}

export { COMPASSMOT_STATUS_CRC_EXTRA, COMPASSMOT_STATUS_ID, CompassmotStatusDefinition };
export type { MessageCompassmotStatus };
