import { ComputedRef, InjectionKey, Ref } from 'vue'; import { TabPanePropsT } from './types'; export type TabChildData = { paneKey: ComputedRef; props: Readonly; navRenderer?: () => any; }; export type SortedChildData = TabChildData & { uid: number; getVNode: () => any; }; export declare const tabInjectKey: InjectionKey<{ lazy: boolean; activeValue: Ref; addChild: (child: SortedChildData) => void; }>;