import React from "react"; import { IItem, ITableProps } from "./types"; declare const Table: { ({ columnDefinitions, renderExtraContent, renderBulkActions, items, getRowLink, rowHeight, footer, sorting: sortingProp, onSortingChange: onSortingChangeProp, loading, disableColumnAutoSizing, enableRowSelection, selectedItems: selectedItemsProp, onRowSelectionChange: onRowSelectionChangeProp, emptyState, columnOrder, visibleColumns, builtIn, getRowProps, variant, tableHead, tableHeight, tableMaxHeight, ...props }: ITableProps): React.JSX.Element; BulkActions: { ({ className, children }: React.PropsWithChildren<{ className?: string | undefined; }>): JSX.Element; Item: ({ icon, children, ...props }: { icon?: React.ReactNode; children: React.ReactNode; } & React.HTMLAttributes) => JSX.Element; Portal: { (): React.JSX.Element; Root: React.FC<{}>; }; }; }; export default Table;