import React from 'react'; import { IRowElement, IHeaderItem, ISelectedRows } from '../types'; import './index.scss'; export interface IProps { data: IRowElement[]; cols: IHeaderItem[]; selectedRows?: ISelectedRows; onRowSelect?: (selected: ISelectedRows) => void; onSort?: (colIndex: number, ascending: boolean) => void; textIfEmpty?: string; header?: boolean; loading?: boolean; } declare const SmartList: React.FC; export { SmartList, };