import type { Paging, DataPageRecord } from './types'; declare class Data { private records; private maxRecords; isDirty: boolean; constructor(); getRecords(paging?: Paging): any[]; mergeRecords(updatedRecords: DataPageRecord[], paging?: Paging): void; setMaxRecordsCount(count: number): void; getMaxRecordsCount(): number; } export default Data;