import SortingColumnHeader from "./SortingColumnHeader"; import type { StatefulTableProps } from "./StatefulTable"; import type { CellInfoType, ColumnType, RowType } from "./Table.types"; export type TableProps = StatefulTableProps; export type TableColumnType = ColumnType; export type TableRowType = RowType; export type TableCellInfoType = CellInfoType; declare function Table({ hasSelectableRows, rowsPerPage, hasExpandableRows, selectedRows, onRowSelectionChange, onRowExpansionChange, onPageChange, selectAllAriaLabel, deselectAllAriaLabel, paginationCss, paginationProps, ...props }: TableProps): import("react/jsx-runtime").JSX.Element; declare namespace Table { var SortingHeader: typeof SortingColumnHeader; } export default Table;