export interface SystemInfo { platform: string; arch: string; release: string; osVersion: string; cpuCount: number; cpuModel: string; cpuSpeedMhz: number; totalMemoryMb: number; freeMemoryMb: number; uptimeSeconds: number; hostname: string; wallclockIso: string; timezone: string; pid: number; ppid: number; cwd: string; argv: string[]; execPath: string; isTTY: boolean; ci: string | undefined; } export declare function collectSystemInfo(): SystemInfo; //# sourceMappingURL=system.d.ts.map