import React from 'react'; export type GridHeaderGroupCellDefault = { /** * Id of the column */ columnId: string; /** * Text content of the header cell */ label: string; /** * Accessible tab index. You should generally pass through the tabIndex * provided to the Renderer component. */ tabIndex: number; }; /** * This is the default header cell renderer for the pv-table. */ declare const GridHeaderGroupCellDefaultImpl: ({ label, tabIndex, }: GridHeaderGroupCellDefault) => React.JSX.Element; export declare const GridHeaderGroupCellDefault: typeof GridHeaderGroupCellDefaultImpl; export {}; //# sourceMappingURL=header-group-cell-default.d.ts.map