import { type JSX } from 'react'; /** * Built-in column action items that expose sorting controls in the column header actions menu. * * When sorting is the only available column action, the sorting items are rendered as direct entries. * Otherwise, they are placed in a "Sort" sub-menu to avoid cluttering the top-level menu. * The available sorting items are determined by the current sorting state. * * @param hasOtherColumnActions - Whether there are any user-defined column actions besides sorting. * @internal */ export declare function SortingColumnActions({ hasOtherColumnActions, }: Readonly<{ hasOtherColumnActions: boolean; }>): JSX.Element | null;