import type { StdioProcessor } from './repl/execute';
import { scripts } from './common/scripts-info';
/**
 * Path-safe helper of {@link waitOnScript} for other flowR scripts.
 *
 * @see waitOnScript
 */
export declare function runScript(name: keyof typeof scripts, args: readonly string[], io?: StdioProcessor, exitOnError?: boolean): Promise<void>;
