import { AppInfo, DevicesMap } from '../types';
export declare function devices(): Promise<DevicesMap>;
export declare function installApp(uuid: string, appPath: string): Promise<void>;
export declare function uninstallApp(uuid: string, packageName: string): Promise<void>;
export declare function getAppList(uuid: string): Promise<AppInfo[]>;
