export declare const useRouterApi: () => {
    active: string;
    tabs: import("../../types").TabsItem[];
    setTabs: (tabs: import("../../types").TabsItem[]) => void;
    setActive: (active: string) => void;
    close: (key?: string) => void;
    closeNavigator: (url: string) => void;
    closeAll: () => void;
};
