import RawData from 'DataTypes/RawData'; import CardBlock from 'CardBlocks/CardBlock'; import Reporter from 'Reporter/Reporter'; export default class RawCardDriverActivity extends CardBlock { static BLOCK_TYPE: number; oldestRecord: number; newestRecord: number; cyclicData: RawData; constructor(data: ArrayBuffer); className(): string; title(): string; toString(): string; printOn(report: Reporter): void; }