import type { BluetoothAudioVideoMinor } from "./BluetoothAudioVideoMinor.js"; import type { BluetoothComputerMinor } from "./BluetoothComputerMinor.js"; import type { BluetoothHealthMinor } from "./BluetoothHealthMinor.js"; import type { BluetoothImagingMinor } from "./BluetoothImagingMinor.js"; import type { BluetoothImagingSubMinor } from "./BluetoothImagingSubMinor.js"; import type { BluetoothNetworkMinor } from "./BluetoothNetworkMinor.js"; import type { BluetoothNetworkSubMinor } from "./BluetoothNetworkSubMinor.js"; import type { BluetoothPeripheralMinor } from "./BluetoothPeripheralMinor.js"; import type { BluetoothPeripheralSubMinor } from "./BluetoothPeripheralSubMinor.js"; import type { BluetoothPhoneMinor } from "./BluetoothPhoneMinor.js"; import type { BluetoothToyMinor } from "./BluetoothToyMinor.js"; import type { BluetoothWearableMinor } from "./BluetoothWearableMinor.js"; export type BluetoothMinorClass = { "Miscellaneous": { unused: number; }; } | { "Computer": BluetoothComputerMinor; } | { "Phone": BluetoothPhoneMinor; } | { "NetworkAccessPoint": [BluetoothNetworkMinor, BluetoothNetworkSubMinor]; } | { "AudioVideo": BluetoothAudioVideoMinor; } | { "Peripheral": [BluetoothPeripheralMinor, BluetoothPeripheralSubMinor]; } | { "Imaging": [Array, BluetoothImagingSubMinor]; } | { "Wearable": BluetoothWearableMinor; } | { "Toy": BluetoothToyMinor; } | { "Health": BluetoothHealthMinor; } | { "Uncategorized": { unused: number; }; }; //# sourceMappingURL=BluetoothMinorClass.d.ts.map