import { Type } from "typebox"; /** Empty request payload for Gateway host system information. */ export declare const SystemInfoParamsSchema: Type.TObject<{}>; /** Gateway host identity and resource snapshot. */ export declare const SystemInfoResultSchema: Type.TObject<{ machineName: Type.TString; hostname: Type.TString; platform: Type.TString; release: Type.TString; arch: Type.TString; osLabel: Type.TString; lanAddress: Type.TOptional; port: Type.TOptional; nodeVersion: Type.TString; pid: Type.TInteger; uptimeMs: Type.TInteger; cpuCount: Type.TInteger; cpuModel: Type.TOptional; loadAverage: Type.TOptional>; memoryTotalBytes: Type.TInteger; memoryFreeBytes: Type.TInteger; diskTotalBytes: Type.TOptional; diskAvailableBytes: Type.TOptional; diskPath: Type.TOptional; }>;