export declare const BUILD_AND_RUN_DOCS = "\n# workflow-build-and-run\n\nBuild and run an Xcode project on a simulator in a single orchestrated workflow.\n\n## Overview\n\nCombines build, simulator selection, installation, and launch into one call:\n1. **Build** - Compile the Xcode project with xcodebuild\n2. **Select Simulator** - Auto-detect or use specified device\n3. **Boot** - Start the simulator\n4. **Install** - Install the built .app bundle\n5. **Launch** - Launch the app\n6. **Screenshot** (optional) - Capture initial app state\n\n## Parameters\n\n### Required\n- **projectPath** (string): Path to .xcodeproj or .xcworkspace\n- **scheme** (string): Build scheme name\n\n### Optional\n- **configuration** (string): Build configuration (default: \"Debug\")\n- **simulatorUdid** (string): Target simulator UDID - auto-detected if omitted\n- **launchArguments** (string[]): App launch arguments\n- **environmentVariables** (Record): App environment variables\n- **takeScreenshot** (boolean): Capture screenshot after launch (default: false)\n"; export declare const BUILD_AND_RUN_DOCS_MINI = "Build, install and launch app on simulator. Use rtfm({ toolName: \"workflow-build-and-run\" }) for docs."; /** * Build and Run Workflow Orchestration * * Combines build, simulator selection, installation, and launch into a single orchestrated workflow. * Handles the entire app development cycle: build project → boot simulator → install app → launch app. * * Full documentation: See src/tools/workflows/build-and-run.md * * @param args Workflow arguments * @returns Complete workflow result with all steps */ export declare function buildAndRunTool(args: any): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=build-and-run.d.ts.map