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

declare const FIGURE_EIGHT_EXECUTION_STATUS_ID = 361;
declare const FIGURE_EIGHT_EXECUTION_STATUS_CRC_EXTRA = 0;
declare const FigureEightExecutionStatusDefinition: MessageDefinition;
interface MessageFigureEightExecutionStatus {
    time_usec: number;
    major_radius: number;
    minor_radius: number;
    orientation: number;
    x: number;
    y: number;
    z: number;
    frame: number;
}

export { FIGURE_EIGHT_EXECUTION_STATUS_CRC_EXTRA, FIGURE_EIGHT_EXECUTION_STATUS_ID, FigureEightExecutionStatusDefinition };
export type { MessageFigureEightExecutionStatus };
