import React from 'react'; import { TableProps } from './types'; declare function TableComponent({ columns, data, striped, hoverable, bordered, compact, // Deprecated: use density instead density, caption, captionPosition, emptyText, emptyState, className, stickyHeader, virtualized, virtualizedRowHeight, height, sortable, onSort, pagination, loading, rowGroups, headerRenderer, footerRenderer, footer, ariaLabel, ariaLabelledBy, ariaDescribedBy, ...props }: TableProps): React.JSX.Element; export declare const Table: typeof TableComponent; export type { TableProps, TableColumn } from './types';