/** * Environment detection utilities */ import { Environment } from '../types/index.js'; /** * Detect the current runtime environment */ export declare function detectEnvironment(): Environment; /** * Check if running in Node.js */ export declare function isNode(): boolean; /** * Check if running in Electron main process */ export declare function isElectronMain(): boolean; /** * Check if running in Electron renderer process */ export declare function isElectronRenderer(): boolean; /** * Check if running in any Electron process */ export declare function isElectron(): boolean; /** * Get the appropriate executor type for the current environment */ export declare function getDefaultExecutorType(): 'node' | 'mock'; //# sourceMappingURL=environment.d.ts.map