import React from 'react'; import type { GridRowId } from '../types'; export type GridHeaderGroupCellProps = { columnId: string; columnIndex: number; rowId: GridRowId; height: number; columnSpan: number; tabIndex?: number; placeholder?: boolean; lastPlaceholder?: boolean; }; export declare const GridHeaderGroupCell: ({ columnId, columnIndex, rowId, height, columnSpan, placeholder, lastPlaceholder, }: GridHeaderGroupCellProps) => React.JSX.Element; export declare const GridHeaderGroupCellMemo: typeof GridHeaderGroupCell; //# sourceMappingURL=grid-header-group-cell.d.ts.map