import type { ReactNode } from 'react';
import type { SmartDataTableProps } from './types';
import * as utils from './helpers/functions';
import './css/basic.css';
declare function SmartDataTable<T = utils.UnknownObject>({ 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<SmartDataTableProps<T>>): ReactNode;
export default SmartDataTable;
