import type { Simctl } from '../simctl'; import type { SimCreationOpts } from '../types'; /** * Create Simulator device with given name for the particular * platform type and version. * * @param name - The device name to be created. * @param deviceTypeId - Device type, for example 'iPhone 6'. * @param platformVersion - Platform version, for example '10.3'. * @param opts - Simulator options for creating devices. * @return The UDID of the newly created device. * @throws {Error} If the corresponding simctl subcommand command * returns non-zero return code. */ export declare function createDevice(this: Simctl, name: string, deviceTypeId: string, platformVersion: string, opts?: SimCreationOpts): Promise; //# sourceMappingURL=create.d.ts.map