import { type PropsWithChildren, type JSX } from 'react'; import type { SortDirection } from '../../tanstack-table-core-override/src/index.js'; /** * Renders button within the column header to trigger sorting directly on header click. * @internal */ export declare const SortingArrowIndicators: (props: PropsWithChildren<{ isSorted?: false | SortDirection; nextSortingOrder?: false | SortDirection; multiSortPriority?: number; rowDensity: "default" | "condensed" | "comfortable"; }>) => JSX.Element;