/**----------------------------------------------------------------------------------------- * 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 { PivotGridAxis } from "@progress/kendo-pivotgrid-common"; /** * Represents the event data for the `expandChange` event. */ export declare class ExpandChangeEvent extends PreventableEvent { /** * Provides the current row axes configuration that results from user interaction. */ rowAxes: PivotGridAxis[]; /** * Provides the current column axes configuration that results from user interaction. */ columnAxes: PivotGridAxis[]; /** * Provides the measure axes configuration. */ measureAxes: PivotGridAxis[]; /** * @hidden */ constructor(args?: any); }