export type Platform = 'darwin' | 'linux' | 'win32' | 'other'; export interface HardwareInfo { platform: Platform; arch: string; osRelease: string; cpuModel: string; cpuCount: number; totalMemoryGB: number; appleSilicon: boolean; } export declare function detectHardware(): HardwareInfo; //# sourceMappingURL=detect.d.ts.map