import type { FC } from 'react'; import { type DropdownMenuItemProps } from '../../DropdownMenu'; export interface TableColumnMenuSortItemProps extends DropdownMenuItemProps { /** Direction this item commits when selected. */ direction: 'asc' | 'desc'; } /** * "Sort ascending / descending" entry. Renders the localized label that * matches the column's `sortType` (e.g. "A → Z" for text, "Highest on top" * for number/score/size) and shows a checkmark when the column is currently * sorted in this direction. Auto-suppresses when sorting is disabled. * * The legacy default menu nests these items under a submenu; consumer-supplied * children can place them flat or inside their own `` submenu — * the item itself doesn't care. */ export declare const TableColumnMenuSortItem: FC;