/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Represents the current time marker settings.
 */
export interface CurrentTimeSettings {
    /**
     * Sets the update interval in milliseconds for the current time marker.
     *
     * @default 60000
     */
    updateInterval?: number;
    /**
     * Specifies if the local timezone is used. If `false`, the Scheduler uses its own timezone.
     *
     * @default true
     */
    localTimezone?: boolean;
    /**
     * Specifies if the current time marker is displayed.
     *
     * @default true
     */
    enabled?: boolean;
}
