import type { IHubScannerErrorFactory } from './i-hub-scanner-error-factory';
import { IHubScanner } from './i-hub-scanner';
export declare class HubScannerFactory {
    private readonly hubScannerErrorFactory;
    constructor(hubScannerErrorFactory: IHubScannerErrorFactory);
    create(bluetooth: Bluetooth): IHubScanner;
}
