import React$1, { Key } from 'react'; import { ColumnType } from 'rc-table'; interface DataTableI18N { pagination: { rows: string; of: string; previous: string; next: string; }; filter: { reset: string; columns: string; operator: string; selectOperator: string; typeValue: string; notNeeded: string; contains: string; doesNotContain: string; equals: string; doesNotEqual: string; startsWith: string; endsWith: string; isEmpty: string; isNotEmpty: string; isAnyOf: string; }; } interface DataItem { key?: Key; [key: string]: unknown; } interface DataTableColumn extends ColumnType { filterable?: boolean; } interface DataTableProps { data: T[]; columns: DataTableColumn[]; rowsPerPage?: number; pagination?: boolean; rowsPerPageOptions?: number[]; border?: boolean; rowSelect?: boolean; rowSelectAction?: (selectedRows: (string | number)[]) => void; checkboxAvailable?: boolean; title?: React.ReactNode | string; filter?: boolean; virtualized?: boolean; emptyText?: React.ReactNode; rowClassName?: string; maxHeight?: number; minHeight?: number; sorting?: boolean; i18n?: Partial; } declare const DataTable: React$1.ForwardRefExoticComponent & React$1.RefAttributes>; export { DataTable as default };