/**
 * @desc: iOS Entry
 * @author: john_chen
 * @date: 2024.12.29
 */
import { DevicesMap } from '../types';
import IOSHandler from './Handler';
/**
 * Init Options
 */
export interface InitOptions {
    wdaProjPath: string;
}
/**
 * 初始化
 *
 * @param {string} uuid 设备 UUID
 * @param {object} options 初始化参数
 * @returns Promise<IOSHandler>
 */
export declare function init(uuid: string, options: InitOptions): Promise<IOSHandler>;
/**
 * Get iOS devices info
 *
 * @returns Promise<DevicesMap>
 */
export declare function devices(): Promise<DevicesMap>;
