import type { ComputedRef, InjectionKey, Ref, Slots, UnwrapRef } from 'vue'; import type { TabsProps } from './tabs'; import type { TabPaneProps } from './tab-pane'; export declare type TabsPaneContext = UnwrapRef<{ uid: number; slots: Slots; props: TabPaneProps; paneName: ComputedRef; active: ComputedRef; index: Ref; isClosable: ComputedRef; }>; export interface TabsRootContext { props: TabsProps; currentName: Ref; registerPane: (pane: TabsPaneContext) => void; sortPane: (pane: TabsPaneContext) => void; unregisterPane: (uid: number) => void; } export declare const tabsRootContextKey: InjectionKey;