import { Implementation, USBDevice } from '../interfaces';
export declare class LinuxImplementation implements Implementation {
    listDevices(): Promise<USBDevice[]>;
    protected findMount(deviceName: string): Promise<string | undefined>;
}
