import { Ref } from 'vue'; import { InnerRouteTabType } from '../typing'; export declare function closeTab(tabName: string): Promise; export declare function closeCurTab(): Promise; export declare function closeOtherTab(): Promise; export declare function useTabRemove(tabArr: Ref, curTab: Ref, curTabIndex: Ref): { onRemoveTabWrapper: (tabName: string) => void; onRemoveOtherTab: () => void; };