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