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

declare const MISSION_REQUEST_PARTIAL_LIST_ID = 37;
declare const MISSION_REQUEST_PARTIAL_LIST_CRC_EXTRA = 212;
declare const MissionRequestPartialListDefinition: MessageDefinition;
interface MessageMissionRequestPartialList {
    start_index: number;
    end_index: number;
    target_system: number;
    target_component: number;
    mission_type?: number;
}

export { MISSION_REQUEST_PARTIAL_LIST_CRC_EXTRA, MISSION_REQUEST_PARTIAL_LIST_ID, MissionRequestPartialListDefinition };
export type { MessageMissionRequestPartialList };
