import * as React from "react"; import type { ThProps } from "./table/Th"; export interface DataGridHeaderProps extends ThProps { /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default 'DATA_GRID_HEADER' * @type {ThProps['element']} */ element?: ThProps["element"]; } /** * DataGrid header (th) component. * Just a wrapper around the DataGridCell. * * @param {string} [element=DATA_GRID_HEADER] - customization element * @param {number} [colSpan] - how many columns the cell spans across */ export declare const DataGridHeader: React.FC>; //# sourceMappingURL=DataGridHeader.d.ts.map