/** * @doc https://miniprogram.alipay.com/docs/miniprogram/mpdev/API_Device_Bluetooth_BLE_getBLEDeviceCharacteristics */ export declare const getBLEDeviceCharacteristics: (args: { deviceId: string; serviceId: string; } & AsyncCallback<{ characteristic: { characteristicId: string; serviceId: string; value: string; properties: { read: boolean; write: boolean; notify: boolean; indicate: boolean; }; }[]; }>) => void; export default getBLEDeviceCharacteristics; /** * @doc https://miniprogram.alipay.com/docs/miniprogram/mpdev/API_Device_Bluetooth_BLE_getBLEDeviceCharacteristics */ export declare const getBLEDeviceCharacteristicsAsync: (args?: ({ deviceId: string; serviceId: string; } & AsyncCallback<{ characteristic: { characteristicId: string; serviceId: string; value: string; properties: { read: boolean; write: boolean; notify: boolean; indicate: boolean; }; }[]; }>) | undefined) => Promise<{ characteristic: { characteristicId: string; serviceId: string; value: string; properties: { read: boolean; write: boolean; notify: boolean; indicate: boolean; }; }[]; }>;