import type { ByteSource, IOResult } from '../../io/types.ts'; import type { Session } from '../session/session.ts'; import type { TSNodeLike } from '../../shell/types.ts'; import type { ExecutionNode } from '../types.ts'; import { type ExecuteNodeDeps } from './execute_node.ts'; type Result = [ByteSource | null, IOResult, ExecutionNode]; export declare function runCommandTree(deps: ExecuteNodeDeps, node: TSNodeLike, session: Session, stdin?: ByteSource | null): Promise; export {}; //# sourceMappingURL=run_tree.d.ts.map