import { TableProps } from '../interfaces'; export type SortingStatus = 'sortable' | 'ascending' | 'descending'; export declare const getSortingStatus: (sortable: boolean, sorted: boolean, descending: boolean, disabled: boolean) => SortingStatus | undefined; export declare const getSortingIconName: (sortingState: SortingStatus) => "caret-down-filled" | "caret-down" | "caret-up-filled"; export declare const isSorted: (column: TableProps.ColumnDefinition, sortingColumn: TableProps.SortingColumn) => boolean; export declare const getSortingColumnId: (columnDefinitions?: ReadonlyArray>, sortingColumn?: TableProps.SortingColumn) => string | null;