/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PivotGridAxis } from '@progress/kendo-pivotgrid-common'; import { CustomComponent } from '@progress/kendo-react-common'; import { ColumnMenuProps as KendoReactColumnMenuProps } from '@progress/kendo-react-data-tools'; import { ChipProps as KendoReactChipProps } from '@progress/kendo-react-buttons'; import { PivotGridAxisFilterFieldsEditorProps } from './AxisFilterFieldsEditor.js'; import * as React from 'react'; /** * Represents the props of the [KendoReact PivotGridAxisEditor component](https://www.telerik.com/kendo-react-ui/components/pivotgrid/api/pivotgridaxiseditor). */ export interface PivotGridAxisEditorProps extends KendoReactChipProps { /** * Represents the `dataItem` of the AxisEditor. * * The `dataItem` is a single [PivotGridAxis](https://www.telerik.com/kendo-react-ui/components/pivotgrid/api/pivotgridaxis) object. */ dataItem: PivotGridAxis; /** * Overrides the default `chip` component. * * The default component is: [KendoReactChip](https://www.telerik.com/kendo-react-ui/components/buttons/api/chip). */ chip?: CustomComponent; /** * Overrides the default `dropClue` component. * * The default component is: `(props) =>
` */ dropClue?: CustomComponent; /** * Overrides the default `columnMenuTextColumn` component. * * The default component is: [KendoReactColumnMenuTextColumn](https://www.telerik.com/kendo-react-ui/components/datatools/api/columnmenutextcolumn). */ columnMenuTextColumn?: CustomComponent; /** * Overrides the default `filterFieldsEditor` component. * * The default component is: [PivotGridAxisFilterFieldsEditor](https://www.telerik.com/kendo-react-ui/components/pivotgrid/api/pivotgridaxisfilterfieldseditor). */ filterFieldsEditor?: CustomComponent; } /** * Represents the object which is passed to the [`ref`](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) callback of the PivotGridAxisEditor component. */ export interface PivotGridAxisEditorHandle { /** * The properties passed to the PivotGridAxisEditor component. */ props: PivotGridAxisEditorProps; /** * The DOM element of the PivotGridAxisEditor component. */ element: HTMLSpanElement | null; } /** * Represents the [KendoReact PivotGridAxisEditor component](https://www.telerik.com/kendo-react-ui/components/pivotgrid/api/pivotgridaxiseditorprops). */ export declare const PivotGridAxisEditor: React.ForwardRefExoticComponent>;