import { type RalphRunOptions as WorkspaceRalphRunOptions, type RalphRunResult } from "../../packages/ralph/dist/index.js"; import type { WorktreeExecutionOptions } from "./types.js"; export type { AgentRunInput, AgentRunResult, RalphRunResult, RalphStopReason } from "../../packages/ralph/dist/index.js"; export type RalphRunOptions = WorkspaceRalphRunOptions & { worktree?: WorktreeExecutionOptions; }; export declare function runRalph(options: RalphRunOptions): Promise;