export declare const XCODEBUILD_INSPECT_SCHEME_DOCS = "# xcodebuild-inspect-scheme\n\nParse and display an Xcode scheme's build, run, and test configurations from its\n`.xcscheme` file.\n\n## Parameters\n- `projectPath` (required): Path to the .xcodeproj or .xcworkspace\n- `scheme` (required): Scheme name to inspect\n\n## Returns\nParsed scheme information: build targets, run configuration, test configuration,\nand environment/launch arguments where present."; export declare const XCODEBUILD_INSPECT_SCHEME_DOCS_MINI = "Inspect Xcode scheme build/run/test configurations."; /** * Inspect Xcode Scheme Configuration * * Parse and display scheme build, run, and test configurations * * @param args Tool arguments * @returns Parsed scheme information */ export declare function inspectSchemeTool(args: any): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=inspect-scheme.d.ts.map