export declare type BluetoothDevice = { name: string; address: string; type: BluetoothDeviceType; }; export interface BluetoothPrinterPlugin { list(): Promise<{ devices: BluetoothDevice[]; }>; connect(options: { address: string; }): Promise; print(options: { data: string; }): Promise; disconnect(): Promise; connectAndPrint(options: { address: string; data: string; }): Promise; } export declare enum BluetoothDeviceType { Unknown = "unknown", Classic = "classic", Le = "le", Dual = "dual" }