import React from 'react'; import { SchemaType, SumRowsType } from '../@types'; interface DataTotalsServerProps { sumRows?: SumRowsType; totals?: null | Record; schema?: SchemaType; } declare const DataTotalsServer: ({ schema, sumRows, totals, }: DataTotalsServerProps) => React.JSX.Element; export default DataTotalsServer; //# sourceMappingURL=DataTotalsServer.d.ts.map