import { TableSortDirection } from './TableHeader.cjs';
export type TableSortProps = ReturnType<ReturnType<typeof useSortableTableHeader>["getSortProps"]>["sortable"];
export declare const useSortableTableHeader: (activeSortKey: string, activeSortDirection: TableSortDirection, onChange: (newSortKey: string, newSortDirection: TableSortDirection) => void) => {
    getSortProps: (columnKey: string) => {
        sortable: {
            onClick: () => void;
            direction: TableSortDirection;
        };
    };
};
