import React from "react"; interface NavigatorContextValue { refresh: () => Promise; expandAll: boolean; setActiveElementPath: (value: string[]) => void; activeElementPath: string[]; } export declare const NavigatorContext: React.Context; export declare const NavigatorDrawer: () => React.JSX.Element; export {};