import * as React from "react"; export interface BluetoothProps { EVENT_DEVICE_ALREADY_PAIRED?: boolean; EVENT_DEVICE_FOUND?: boolean; EVENT_DEVICE_DISCOVER_DONE?: boolean; EVENT_CONNECTION_LOST?: boolean; EVENT_UNABLE_CONNECT?: boolean; EVENT_CONNECTED?: boolean; EVENT_BLUETOOTH_NOT_SUPPORT?: boolean; isBluetoothEnabled?: Promise; enableBluetooth?: Function; disableBluetooth?: Function; scanDevices?: Promise; connect?: Promise; } export function BluetoothManager(props: BluetoothProps): any;