import { CommandPreprocessor, Options, RunOptions } from '../types';
/** internal - executes all registered preprocessor on given config */
export declare function _compileTimePreprocess(config: RunOptions): Promise<RunOptions>;
export declare function _runTimePreprocess(runOptions: RunOptions, commandOptions: Options, commandIndex: number): Promise<void>;
export declare function registerCommandPreprocessor(p: CommandPreprocessor): void;
