import { BackendConfig, BackendEnv, DevtoolsHook } from './types'; export * from './utils'; export * from './config'; export * from './types'; export * from './constants'; declare global { interface Window { __PERF_MONITOR_DEVTOOLS_CONTEXT__: BackendConfig; __PERF_MONITOR_DEVTOOLS_ENV__: BackendEnv; __PERF_MONITOR_DEVTOOLS_HOOK__: DevtoolsHook; /** * Whether devtools client runs in a separate window, only within the client window */ __PERF_MONITOR_DEVTOOLS_CLIENT_SEPARATE__: boolean; } }