/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Border, DashType } from '../common/property-types'; /** * The border options of the tooltip. */ export interface TooltipBorder extends Omit { /** * * @hidden * * **Deprecated**. The `dashType` setting is ignored. Use the `border-style` CSS property instead. * * @deprecated */ dashType?: DashType; }