import type { CellValue, DataGridRow } from '../../types'; import { type HeadProps } from '../Head'; type UseLogicParams = DataGridRow, TSortField extends keyof TData = keyof TData> = HeadProps; export declare const useLogic: = DataGridRow, TSortField extends keyof TData = keyof TData>({ rowsCount, sorting, uncheckedRowsCount, onSort, }: UseLogicParams) => { handleSort: (field: TSortField) => void; checkboxProps: { checked: boolean; disabled: boolean; indeterminate: boolean; }; }; export {};