/** * iOS key mapping and AppleScript literals for the Simulator host. * * SECURITY: AppleScript strings here are fixed literals passed as distinct * argv slots to execFileSync("osascript", [...]). They never reach /bin/sh. */ export declare const IOS_KEY_MAP: Record; /** * Resolve a logical key name to its simctl/AppleScript token. */ export declare function mapKey(key: string): string; /** * AppleScript argv that activates Simulator and triggers Cmd+Shift+H (home). */ export declare const HOME_KEY_OSASCRIPT_ARGS: readonly string[]; /** * AppleScript argv that just brings Simulator to focus. */ export declare const ACTIVATE_SIMULATOR_OSASCRIPT_ARGS: readonly string[]; //# sourceMappingURL=keymap.d.ts.map