import { CommonFileNavTreeComponent } from "./common-file-nav-tree/common-file-nav-tree"; import { NavTreeSearchBarComponent } from "./common-file-nav-tree/search-bar/search-bar"; import { TabBarToolbar } from "./tool-bar/tool-bar"; import { NavPanelComponent } from "./nav-panel.component"; import { NavPanelFactory } from "./nav-panel.factory"; import { NavTreeSearchService } from './common-file-nav-tree/search-bar/search.service'; /** 导航面板相关的需要声明的组件 */ export declare const NAV_PANEL_COMPONENTS: (typeof NavTreeSearchBarComponent | typeof CommonFileNavTreeComponent | typeof TabBarToolbar | typeof NavPanelComponent)[]; /** 导航面板相关的需要动态加载的组件 */ export declare const NAV_PANEL_ENTRY_COMPONENTS: (typeof NavTreeSearchBarComponent | typeof CommonFileNavTreeComponent | typeof TabBarToolbar)[]; /** 导航面板相关的服务提供者 */ export declare const NAV_PANEL_PROVIDERS: (typeof NavTreeSearchService | typeof NavPanelFactory)[];