import { AriaAttributes, VNode } from 'vue'; import { OnyxTooltipProps } from './types.js'; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ /** * Default slot where the parent content is placed that controls the open/close state of the tooltip. * * **Accessibility**: You must ensure that the trigger attributes are bound to a button when the `open` prop is not `hover`! */ default(params: { trigger: AriaAttributes; }): VNode; /** * Optional slot to place custom content for the tooltip text. * * **Accessibility**: You must ensure that the tooltip content is NOT focusable/interactive. */ tooltip?(): unknown; }> & { /** * Default slot where the parent content is placed that controls the open/close state of the tooltip. * * **Accessibility**: You must ensure that the trigger attributes are bound to a button when the `open` prop is not `hover`! */ default(params: { trigger: AriaAttributes; }): VNode; /** * Optional slot to place custom content for the tooltip text. * * **Accessibility**: You must ensure that the tooltip content is NOT focusable/interactive. */ tooltip?(): unknown; }; refs: { tooltipWrapperRefEl: HTMLDivElement; tooltipRefEl: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue', { with: { "resolution-mode": "import" } }).DefineComponent any; }, string, import('vue', { with: { "resolution-mode": "import" } }).PublicProps, Readonly & Readonly<{ "onUpdate:open"?: ((open: boolean) => any) | undefined; }>, { alignment: import('../../composables/useOpenAlignment.js', { with: { "resolution-mode": "import" } }).OpenAlignment | "auto"; alignsWithEdge: boolean; fitParent: boolean; position: import('../../composables/useAnchorPositionPolyfill.js', { with: { "resolution-mode": "import" } }).AnchorPosition | "auto"; open: boolean | null; color: Extract; trigger: import('./types.js', { with: { "resolution-mode": "import" } }).TooltipTrigger; }, {}, {}, {}, string, import('vue', { with: { "resolution-mode": "import" } }).ComponentProvideOptions, false, { tooltipWrapperRefEl: HTMLDivElement; tooltipRefEl: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };