import type { ReactNode } from 'react'; import type { SmartDataTableProps } from './types'; import * as utils from './helpers/functions'; import './css/basic.css'; declare function SmartDataTable({ className, data, dataKey, dataKeyResolver, dataRequestOptions, dataSampling, dynamic, emptyTable, filterValue, headers, hideUnordered, loader, name, onRowClick, orderedHeaders, paginator: PaginatorComponent, parseBool, parseImg, perPage, rowClassName, sortable, withFooter, withHeader, withLinks, withToggles, }: Partial>): ReactNode; export default SmartDataTable;