export interface SystemInfo { platform: NodeJS.Platform; osName: string; arch: string; release: string; shell: string; cwd: string; } export declare function detectSystem(): SystemInfo; export declare function isWindows(): boolean;