import { type TableCellProps } from '@mui/material'; import { type CSSProperties } from 'react'; import { type DataGridRow, type DataGridSort } from '../types'; export type DataGridHeadColumnProps = { onSort: (field: TSortField) => void; sorting?: DataGridSort; label?: string; sortable?: boolean; align?: TableCellProps['align']; field?: keyof TData; width?: CSSProperties['width']; }; export declare const DataGridHeadColumn: ({ onSort, field, sortable, align, label, sorting, width, }: DataGridHeadColumnProps) => JSX.Element;