import { RValueOrKey } from '../common/key'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = { /** * Whether the anchor is active. * @private */ active?: boolean; /** * Which side of the content the anchor will show on. * @private */ side?: 'top' | 'bottom' | 'left' | 'right'; /** * Tab item value. * @private */ value: RValueOrKey; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ /** Content of the anchor. */ default?: (props: {}) => any; }> & { /** Content of the anchor. */ default?: (props: {}) => any; }; refs: {}; rootEl: HTMLLIElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { activate: (value: RValueOrKey) => any; }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{ onActivate?: ((value: RValueOrKey) => any) | undefined; }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLIElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };