import type { RadioDeviceKind } from "./RadioDeviceKind.js"; /** * Represents a radio device like a bluetooth - wifi etc. */ export type RadioDevice = { id: string; name: string; kind: RadioDeviceKind; /** * True if the radio device is currently `On`. */ is_enabled: boolean; }; //# sourceMappingURL=RadioDevice.d.ts.map