import Context from './Context'; import Executable from './Executable'; import ExecutionInfo from './ExecutionInfo'; import Reporter from './Reporter'; declare function execute(executable: Executable, executionInfo: ExecutionInfo, reporter?: Reporter): Promise; declare function execute(executable: Executable, context: Context): Promise; export default execute;