/**----------------------------------------------------------------------------------------- * 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 './preventable-event'; import { SchedulerEvent } from '../types'; /** * Represents the arguments for the `moreEventsClick` event. */ export declare class MoreEventsClickEvent extends PreventableEvent { /** * The events that are displayed in the day slot. */ displayedEvents: SchedulerEvent[]; /** * The events that are hidden from the day slot. */ moreEvents: SchedulerEvent[]; /** * @hidden */ constructor(); }