import { InnerRouteTabType } from '../typing'; import { Ref } from 'vue'; export declare function useToTab(tabArr: Ref, curTab: Ref, curTabIndex: Ref): { updateCurTabAndCurTabIndex: (tabName: string) => InnerRouteTabType | undefined; onToTab: (tabName: string) => void; };