import { Device } from "./device"; export declare class Adb { /** * The folder where adb.exe is located */ readonly path: string; constructor(adbPath: string); getDevices(retry?: number): Promise; }