import RawData from 'DataTypes/RawData'; import CardBlock from 'CardBlocks/CardBlock'; import Reporter from 'Reporter/Reporter'; export default class DriverCardApplicationIdentification extends CardBlock { static BLOCK_TYPE: number; typeOfTachographCardId: number; cardStructureVersion: RawData; noOfEventsPerType: number; noOfFaultsPerType: number; activityStructureLength: number; noOfCardVehicleRecords: number; noOfCardPlaceRecords: number; constructor(data: ArrayBuffer); className(): string; title(): string; toString(): string; printOn(report: Reporter): void; }