/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { HeadersAction, PivotGridAxis, AxisDataItem } from '@progress/kendo-pivotgrid-common'; import * as React from 'react'; export { HEADERS_ACTION } from '@progress/kendo-pivotgrid-common'; /** * @hidden */ export declare const useHeaders: (prop: PivotGridAxis[], tree: AxisDataItem, onChange?: ((value: PivotGridAxis[], event: React.SyntheticEvent) => void) | undefined) => [PivotGridAxis[], (action: Omit, event: React.SyntheticEvent) => void]; /** * @hidden */ type Omit = Pick>;