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