export declare namespace AppRuntime { function get(): AppRuntimeID; function isElectron(): boolean; function isBrowser(): boolean; function isNode(): boolean; } export declare type AppRuntimeID = 'electron' | 'browser' | 'node';