/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { TypeSortInfo, TypeFilterValue, TypeComputedProps, TypeGroupBy, TypeBatchUpdateQueue, TypeDataSourceCache } from '../../types'; declare const computeData: (config: { skip?: number | undefined; limit?: number | undefined; localPagination?: boolean | undefined; originalData?: any[] | undefined; groupBy?: TypeGroupBy; sortInfo?: TypeSortInfo | undefined; filterValue?: TypeFilterValue | undefined; dataSourceCache?: TypeDataSourceCache; remoteFilter?: boolean | undefined; loading?: boolean | undefined; remoteData?: boolean | undefined; }, computedProps: TypeComputedProps, batchUpdateQueue: TypeBatchUpdateQueue) => { data: any[] | undefined; dataCountAfterFilter: number | undefined; }; export default computeData;