/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { PreventableEvent } from "@progress/kendo-angular-common"; import { FilterDescriptor, SortDescriptor } from "@progress/kendo-data-query"; import { PivotGridAxis } from "@progress/kendo-pivotgrid-common"; /** * Represents the event data for the `configurationChange` event. */ export declare class ConfigurationChangeEvent extends PreventableEvent { /** * Specifies the current row axes configuration that results from user interaction. */ rowAxes: PivotGridAxis[]; /** * Specifies the current column axes configuration that results from user interaction. */ columnAxes: PivotGridAxis[]; /** * Provides the measure axes configuration. */ measureAxes: PivotGridAxis[]; /** * Provides the sorting configuration. */ sort?: SortDescriptor[]; /** * Provides the filtering configuration. */ filter?: FilterDescriptor[]; /** * @hidden */ constructor(args?: any); }