/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { GanttColumnBase } from '../../columns/column-base.component';
/**
 * Provides the arguments for the `columnVisibilityChange` event.
 */
export interface ColumnVisibilityChangeEvent {
    /**
     * Contains the columns whose visibility changes.
     */
    columns: GanttColumnBase[];
}
