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

declare const CUBEPILOT_RAW_RC_ID = 50001;
declare const CUBEPILOT_RAW_RC_CRC_EXTRA = 0;
declare const CubepilotRawRcDefinition: MessageDefinition;
interface MessageCubepilotRawRc {
    rc_raw: number[];
}

export { CUBEPILOT_RAW_RC_CRC_EXTRA, CUBEPILOT_RAW_RC_ID, CubepilotRawRcDefinition };
export type { MessageCubepilotRawRc };
