import { IGattCentral, IGattPeripheral } from "./bluetooth";
export default class NobleBluetoothCentral implements IGattCentral {
    startScanning(callback: (peripheral: IGattPeripheral) => void): Promise<void>;
    stopScanning(): Promise<void>;
    static create(): Promise<NobleBluetoothCentral>;
}
