export declare const App: { version: string; name: string; /** 插件名, 自定义 */ plugin: string; }; export declare const isBrowser: boolean; export declare const isNode: boolean; /** 浏览器插件后台(服务工作进程) */ export declare const inPluginBG: false; /** 浏览器插件content-script环境 */ export declare const inContentScript: boolean; /** 浏览器正常工作环境 */ export declare const inWindow: boolean; /** 浏览器worker环境 */ export declare const inWorker: boolean;