/**-----------------------------------------------------------------------------------------
* 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 the current time marker in the Gantt component.
 *
 */
export interface CurrentTimeSettings {
    /**
     * Sets the update interval in milliseconds for the current time marker.
     * Use this property to control how often the marker updates.
     * @default 60000
     */
    updateInterval?: number;
    /**
     * Shows or hides the current time marker.
     * Set to `true` to display the marker.
     * @default true
     */
    enabled?: boolean;
}
