export interface ExecAdbOptions {
current?: string;
adbPath: string;
}
export declare const execAdb: (code: string, option: ExecAdbOptions) => string;
export declare const isPathAdb: (folderPath: string, option: ExecAdbOptions) => boolean;
export default execAdb;