import { type ChangeEvent } from 'react'; import { type DataGridColumns, type DataGridRow, type DataGridSort } from '../types'; export type DataGridHeadProps = { columns: DataGridColumns[]; selectable: boolean; /** * @example * Меняет компонент шапки таблицы для DataGridInfinite */ isInfinite?: boolean; onSelectAllRows: (event: ChangeEvent) => void; sorting?: DataGridSort; onSort?: (sorting: DataGridSort | undefined) => void; uncheckedRowsCount: number; rowsCount: number; }; export declare const DataGridHead: ({ columns, selectable, onSelectAllRows, rowsCount, onSort, sorting, uncheckedRowsCount, isInfinite, }: DataGridHeadProps) => JSX.Element;