import React from 'react'; import type { FrontendApplication } from '../application'; /** AppContext */ export declare const XFlowAppContext: any; /** AppContext:获取 app */ export declare const useXFlowApp: () => any; /** AppContext: 获取 appContainer */ export declare const useXFlowAppContainer: () => any; /** XFlow内部使用 */ export declare const XFlowAppInternalProvider: React.FC<{ app: FrontendApplication; }>; /** XFlow外部使用 */ export declare const XFlowAppProvider: React.FC;