import { YarnRunner, type RunnerOptions } from "../runtime/runner.js";
import type { IRProgram } from "../compile/ir.js";
import type { RuntimeResult } from "../runtime/results.js";
export declare function useYarnRunner(program: IRProgram, options: RunnerOptions): {
    result: RuntimeResult | null;
    advance: (optionIndex?: number) => void;
    runner: YarnRunner;
};
