UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

22 lines (21 loc) 684 B
import * as React from 'react'; import { GridPinnedColumnPosition } from '../../hooks/features/columns/gridColumnsInterfaces'; interface GridColumnGroupHeaderProps { groupId: string | null; width: number; fields: string[]; colIndex: number; isLastColumn: boolean; depth: number; maxDepth: number; height: number; hasFocus?: boolean; tabIndex: 0 | -1; pinnedPosition?: GridPinnedColumnPosition; style?: React.CSSProperties; indexInSection: number; sectionLength: number; gridHasFiller: boolean; } declare function GridColumnGroupHeader(props: GridColumnGroupHeaderProps): React.JSX.Element; export { GridColumnGroupHeader };