import type { Config, RunResult, RuntimeContext } from './types.js'; export declare const cleanupPrevData: (ctx: RuntimeContext, prev: RunResult) => void; export declare const run: (config: Config, prev?: RunResult) => Promise;