import { TableProps } from '../interfaces'; export type SortMenuAction = 'sort-ascending' | 'sort-descending' | 'add-to-sort-ascending' | 'add-to-sort-descending' | 'remove-from-sort'; export interface SortMenuProps { column: TableProps.ColumnDefinition; inSort: boolean; isSortedAscending: boolean; isSortedDescending: boolean; i18nStrings?: TableProps.I18nStrings; ariaLabel?: string; ariaDescribedby?: string; onAction: (action: SortMenuAction) => void; } export declare function SortMenu({ inSort, isSortedAscending, isSortedDescending, i18nStrings, ariaLabel, ariaDescribedby, onAction }: SortMenuProps): JSX.Element;