/** * @doc https://miniprogram.alipay.com/docs/miniprogram/mpdev/API_Device_Bluetooth_Bluetooth_getBluetoothDevices */ export declare const getBluetoothDevices: (args: AsyncCallback<{ devices: BluetoothDevices[]; }>) => void; export default getBluetoothDevices; /** * @doc https://miniprogram.alipay.com/docs/miniprogram/mpdev/API_Device_Bluetooth_Bluetooth_getBluetoothDevices */ export declare const getBluetoothDevicesAsync: (args?: AsyncCallback<{ devices: BluetoothDevices[]; }> | undefined) => Promise<{ devices: BluetoothDevices[]; }>;