import { TooltipProps } from "../../tooltip/index.js"; //#region src/typography/Base/EllipsisTooltip.d.ts interface EmptyEmitsProps {} interface EllipsisTooltipProps extends EmptyEmitsProps { tooltipProps?: TooltipProps; enableEllipsis: boolean; isEllipsis?: boolean; /** * Suppress the tooltip without taking control of its open state, so hover * handling stays inside Tooltip and it re-opens when moving from the actions * back to the text. */ disabled: boolean; } interface EllipsisTooltipSlots { default?: () => any; } declare const EllipsisTooltip: import("vue").DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //#endregion export { EllipsisTooltipProps, EllipsisTooltipSlots, EmptyEmitsProps, EllipsisTooltip as default };