/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Position } from '@progress/kendo-angular-tooltip';
/**
 * The options of the tooltip shown when a task is hovered.
 */
export interface TaskTooltipOptions {
    /**
     * Specifies the position of the Tooltip or Popover in relation to the anchor element.
     *
     * @default 'left'
     */
    position: Position;
    /**
     * Specifies if the Тooltip will display a callout arrow.
     *
     * @default true
     */
    callout: boolean;
    /**
     * Specifies the delay in milliseconds before the Tooltip is shown.
     *
     * @default 100
     */
    showAfter: number;
}
