export interface RalphLoopArguments { prompt: string; completionPromise: string; maxIterations: number; strategy: "reset" | "continue"; } export declare function parseRalphLoopArguments(rawInput: string): RalphLoopArguments;