import type { PromptRunOptions } from '../types/PromptRunOptions';
import type { PromptRunResult } from '../types/PromptRunResult';
import type { PromptRunner } from '../types/PromptRunner';
import type { ClineRunnerOptions } from './ClineRunnerOptions';
/**
 * Runs prompts via the Cline CLI.
 */
export declare class ClineRunner implements PromptRunner {
    private readonly options;
    readonly name = "cline";
    /**
     * Creates a new Cline runner.
     */
    constructor(options: ClineRunnerOptions);
    /**
     * Runs the prompt using the Cline CLI.
     */
    runPrompt(options: PromptRunOptions): Promise<PromptRunResult>;
}
