/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Represents the settings for highlighting ongoing events.
 */
export interface OngoingEventsSettings {
    /**
     * Sets the update interval in milliseconds for the ongoing events highlight.
     *
     * @default 60000
     */
    updateInterval?: number;
    /**
     * Specifies if ongoing events are highlighted.
     *
     * @default true
     */
    enabled?: boolean;
    /**
     * Sets a custom CSS class for ongoing events.
     */
    cssClass?: string;
}
