import { ReactElement } from 'react'; import { TableProps } from './model/table-model'; /** * Component used to render tabular data in Perses use cases. This component is * **not** intended to be a general use data table for use cases unrelated to Perses. * * **Note: This component is currently experimental and is likely to have significant breaking changes in the near future. Use with caution outside of the core Perses codebase.** */ export declare function Table({ data, columns, cellConfigs, density, defaultColumnWidth, defaultColumnHeight, checkboxSelection, onRowSelectionChange, onSortingChange, getCheckboxColor, getRowId, rowSelection, sorting, getItemActions, hasItemActions, pagination, onPaginationChange, rowSelectionVariant, getSubRows, hiddenColumns, tableToolbarConfig, ...otherProps }: TableProps): ReactElement; //# sourceMappingURL=Table.d.ts.map