/**-----------------------------------------------------------------------------------------
* Copyright © 2026 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';
/**
 * Configures the options for the tooltip that appears when you hover over a task.
 */
export interface TaskTooltipOptions {
    /**
     * Sets the `position` of the Tooltip or Popover relative to the anchor element.
     *
     * @default 'left'
     */
    position: Position;
    /**
     * Shows a callout arrow on the Tooltip when set to `true`.
     *
     * @default true
     */
    callout: boolean;
    /**
     * Sets the delay in milliseconds before the Tooltip appears.
     *
     * @default 100
     */
    showAfter: number;
}
