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

declare const MAG_CAL_PROGRESS_ID = 191;
declare const MAG_CAL_PROGRESS_CRC_EXTRA = 0;
declare const MagCalProgressDefinition: MessageDefinition;
interface MessageMagCalProgress {
    direction_x: number;
    direction_y: number;
    direction_z: number;
    compass_id: number;
    cal_mask: number;
    cal_status: number;
    attempt: number;
    completion_pct: number;
    completion_mask: number[];
}

export { MAG_CAL_PROGRESS_CRC_EXTRA, MAG_CAL_PROGRESS_ID, MagCalProgressDefinition };
export type { MessageMagCalProgress };
