import { ComponentOptionsMixin } from 'vue'; import { ComponentProvideOptions } from 'vue'; import { ComputedRef } from 'vue'; import { DefineComponent } from 'vue'; import { ExtractPropTypes } from 'vue'; import { InjectionKey } from 'vue'; import { PropType } from 'vue'; import { PublicProps } from 'vue'; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; declare type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; declare const _default: __VLS_WithTemplateSlots, { variant: TabVariant; }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:activeTab": (newTabValue: string) => void; }, string, PublicProps, Readonly, { variant: TabVariant; }>>> & Readonly<{ "onUpdate:activeTab"?: ((newTabValue: string) => any) | undefined; }>, { variant: "line" | "enclosed"; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, { default?(_: {}): any; "more-actions"?(_: {}): any; }>; export default _default; declare interface Injection { key: InjectionKey; } export declare const TABS_INJECTION: Injection; export declare interface TabsInjection { activeTab: ComputedRef; variant: ComputedRef; setActiveTab: (newTabValue: string) => void; } export declare interface TabsProps { /** * The currently active tab value */ activeTab: string; /** * Tabs variant */ variant?: TabVariants; } export declare enum TabVariant { Line = "line", Enclosed = "enclosed" } export declare type TabVariants = `${TabVariant}`; export { }