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