export = DataProvider; declare class DataProvider { constructor(doc: any, filterParser: any); filterParser: any; doc: any; formatRow(sheetRow: any): any; findRowById(sheet: any, id: any): Promise; find(collectionName: any, filter: any, sort: any, skip: any, limit: any): Promise; count(collectionName: any, filter: any): Promise; insert(collectionName: any, items: any): Promise; updateRow(row: any, updatedItem: any): Promise; update(collectionName: any, items: any): Promise; bulkUpdate(collectionName: any, items: any): Promise; delete(collectionName: any, ids: any): Promise<{}>; deleteRow(sheet: any, id: any): Promise; truncate(collectionName: any): Promise; }