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

declare const MISSION_WRITE_PARTIAL_LIST_ID = 38;
declare const MISSION_WRITE_PARTIAL_LIST_CRC_EXTRA = 9;
declare const MissionWritePartialListDefinition: MessageDefinition;
interface MessageMissionWritePartialList {
    start_index: number;
    end_index: number;
    target_system: number;
    target_component: number;
    mission_type?: number;
}

export { MISSION_WRITE_PARTIAL_LIST_CRC_EXTRA, MISSION_WRITE_PARTIAL_LIST_ID, MissionWritePartialListDefinition };
export type { MessageMissionWritePartialList };
