import type { TabPaneProps, TabsProps } from 'element-plus/es/components/tabs'; import type { ComputedRef, InjectionKey, Ref, Slots, UnwrapRef } from 'vue'; 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; unregisterPane: (uid: number) => void; } export declare const tabsRootContextKey: InjectionKey;