import { WebPlugin } from '@capacitor/core'; import { BluetoothSerialPlugin } from './definitions'; export declare class BluetoothSerialWeb extends WebPlugin implements BluetoothSerialPlugin { constructor(); isEnabled(): Promise; enable(): Promise; scan(): Promise; connect(options: import('./definitions').BluetoothConnectOptions): Promise; connectInsecure(options: import('./definitions').BluetoothConnectOptions): Promise; disconnect(options: import('./definitions').BluetoothConnectOptions): Promise; isConnected(options: import('./definitions').BluetoothConnectOptions): Promise; read(options: import('./definitions').BluetoothReadOptions): Promise; readUntil(options: import('./definitions').BluetoothReadUntilOptions): Promise; enableNotifications(options: import('./definitions').BluetoothEnableNotificationsOptions): Promise; disableNotifications(options: import('./definitions').BluetoothDisableNotificationsOptions): Promise; } declare const BluetoothSerial: BluetoothSerialWeb; export { BluetoothSerial };