import type { DesktopDeviceStatusResult } from '../shared/types.js'; interface DeviceStatusCommandResult { code: number; stdout: string; } /** * Convert host-CLI output into the only device data Electron may expose. * * This is intentionally an exact allow-list, not a cast: if a buggy CLI adds * accessToken/refreshToken (or any future unreviewed field), main rejects the * whole response before it can cross IPC into the renderer/webview boundary. */ export declare function sanitizeDeviceStatusCommandResult(result: DeviceStatusCommandResult): DesktopDeviceStatusResult; export {}; //# sourceMappingURL=device-status.d.ts.map