import { Column, Header, SortingState, Updater } from "@tanstack/react-table"; interface ColumnActionsProps { header: Header; visibleColumnsCount: number; setSorting: (updater: Updater) => void; getColumn: (columnId: string) => Column | undefined; } /** * `ColumnActions` component to render column action controls for a table. * * @template TData The type of the table row data. * @param {ColumnActionsProps} props Component properties. * @param {Header} props.header The header of the current column provided by React Table. * @param {number} props.visibleColumnsCount The number of visible columns in the table. */ declare const ColumnActions: ({ header, visibleColumnsCount, setSorting, getColumn }: ColumnActionsProps) => import("react/jsx-runtime").JSX.Element | null; export default ColumnActions;