/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { LegendEvent } from './legend-event'; /** * Represents the arguments for the `legendItemLeave` event of the Chart component. */ export declare class LegendItemLeaveEvent extends LegendEvent { /** * @hidden */ preventDefault(): void; /** * @hidden */ isDefaultPrevented(): boolean; }