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

declare const MANUAL_CONTROL_ID = 69;
declare const MANUAL_CONTROL_CRC_EXTRA = 243;
declare const ManualControlDefinition: MessageDefinition;
interface MessageManualControl {
    x: number;
    y: number;
    z: number;
    r: number;
    buttons: number;
    target: number;
    buttons2?: number;
    enabled_extensions?: number;
    s?: number;
    t?: number;
    aux1?: number;
    aux2?: number;
    aux3?: number;
    aux4?: number;
    aux5?: number;
    aux6?: number;
}

export { MANUAL_CONTROL_CRC_EXTRA, MANUAL_CONTROL_ID, ManualControlDefinition };
export type { MessageManualControl };
