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

declare const GIMBAL_MANAGER_INFORMATION_ID = 280;
declare const GIMBAL_MANAGER_INFORMATION_CRC_EXTRA = 0;
declare const GimbalManagerInformationDefinition: MessageDefinition;
interface MessageGimbalManagerInformation {
    time_boot_ms: number;
    cap_flags: number;
    roll_min: number;
    roll_max: number;
    pitch_min: number;
    pitch_max: number;
    yaw_min: number;
    yaw_max: number;
    gimbal_device_id: number;
}

export { GIMBAL_MANAGER_INFORMATION_CRC_EXTRA, GIMBAL_MANAGER_INFORMATION_ID, GimbalManagerInformationDefinition };
export type { MessageGimbalManagerInformation };
