import React from 'react'; type GridHeaderCellDefaultRendererProps = { columnId: string; tabIndex: number; }; declare const GridHeaderCellDefaultRendererImpl: ({ columnId, tabIndex, }: GridHeaderCellDefaultRendererProps) => React.JSX.Element; /** * This default renderer takes only `columnId` and `tabIndex` and * retrieves the rest of its content from Grid context hooks. * * It ultimately renders the `GridHeaderCellDefault` component. * * If it fails to find data associated with a given column id, * it will return an empty React fragment. */ export declare const GridHeaderCellDefaultRenderer: typeof GridHeaderCellDefaultRendererImpl; export {}; //# sourceMappingURL=default-header-cell.d.ts.map