import React from 'react'; import type { Column, SortingRule } from 'react-table'; import type { ReactElement } from 'react'; export type TableProps = { data: any[]; columns: Column[]; }; export default function NewTable({ data, columns, sortBy, empty, renderRowSubComponent, subRowKey, getSubRows, headGroup, }: TableProps & { sortBy?: SortingRule[]; empty?: ReactElement | string; renderRowSubComponent?: (row: any) => ReactElement | string; subRowKey?: string; getSubRows?: (row: any) => Promise; headGroup?: JSX.Element; }): React.JSX.Element; //# sourceMappingURL=table.d.ts.map