import { ChildProcessWithoutNullStreams } from 'node:child_process'; declare function runTask(cmd: string, { cwd, env }?: { cwd: string; env?: NodeJS.ProcessEnv; }, title?: string): Promise; declare function spawnTask(cmd: string, { cwd, env }?: { cwd: string; env?: NodeJS.ProcessEnv; }, title?: string): Promise; export { runTask, spawnTask };