import type { TableProps } from "../Table"; type SortingTableProps = TableProps & { initialSortColumn: string; }; declare function SortingTable({ columns: incomingColumns, rows: incomingRows, initialSortColumn, ...props }: SortingTableProps): import("react/jsx-runtime").JSX.Element; export default SortingTable;