export declare const DEFAULT_EXEC_TIMEOUT: number; export declare const SIM_RUNTIME_NAME = "com.apple.CoreSimulator.SimRuntime."; /** * "Normalize" the version, since iOS uses 'major.minor' but the runtimes can * be 'major.minor.patch' * * @param version - the string version * @return The version in 'major.minor' form * @throws {Error} If the version not parseable by the `semver` package */ export declare function normalizeVersion(version: string): string; /** * @returns The xcrun binary name */ export declare function getXcrunBinary(): string; /** * Convert plist-style output to JSON using plutil * * @param plistInput - The plist-style string to convert * @return Promise resolving to parsed JSON object * @throws {Error} If plutil fails to convert the input */ export declare function convertPlistToJson(plistInput: string): Promise; //# sourceMappingURL=helpers.d.ts.map