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

declare const FILE_TRANSFER_PROTOCOL_ID = 110;
declare const FILE_TRANSFER_PROTOCOL_CRC_EXTRA = 84;
declare const FileTransferProtocolDefinition: MessageDefinition;
interface MessageFileTransferProtocol {
    target_network: number;
    target_system: number;
    target_component: number;
    payload: number[];
}

export { FILE_TRANSFER_PROTOCOL_CRC_EXTRA, FILE_TRANSFER_PROTOCOL_ID, FileTransferProtocolDefinition };
export type { MessageFileTransferProtocol };
