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