export interface DevicesType {
name: string;
status: string;
}
export declare const devices: (adbPath: string) => DevicesType[];
export declare const selectDevice: (adbPath: string) => Promise<string | null>;
export declare const rebootADBServer: (adbPath: string) => void;