export interface Device {
    id: string;
    type: 'emulator' | 'device' | 'offline';
}
