import type { ProviderExecutionResult } from "./types.js"; interface ExecuteCommandOptions { command: string; args: string[]; cwd?: string; env?: NodeJS.ProcessEnv; abortSignal?: AbortSignal; onStdout?: (chunk: string) => void; onStderr?: (chunk: string) => void; } export declare function executeCommand(options: ExecuteCommandOptions): Promise; export {};