export declare const useKeepAlive: () => {
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;
};