/// import { Column, CellProps, Row } from 'react-table'; interface IDataGridProps { columns: Column[]; isSortable?: boolean; showPagination?: boolean; isMultiSelect?: boolean; multiSelectPosition?: "left" | "right"; data: any[]; updateMyData?: (cell: CellProps, columnId: string, value: any) => void; onRowSelection?: (flatRowSelected: Row[]) => void; } declare const DataGrid: ({ columns, data, isSortable, showPagination, multiSelectPosition, isMultiSelect, onRowSelection, updateMyData }: IDataGridProps) => JSX.Element; export { IDataGridProps as IReactDataGridProps, DataGrid as ReactDataGrid };