/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { Field } from '@datashaper/schema'; import type { IDetailsGroupDividerProps, IRenderFunction } from '@fluentui/react'; import type ColumnTable from 'arquero/dist/types/table/column-table'; import type { GroupHeaderFunction } from '../index.js'; /** * Overrides the default group header rendering so we can inject customization * @returns */ export declare function useGroupHeaderRenderer(table: ColumnTable, fields: Field[], groupHeaderFunction?: GroupHeaderFunction, lazyLoadGroups?: boolean): IRenderFunction;