import type { IAsyncExecutor } from './abstraction/i-executor.js'; import type { IExecuteResult } from './abstraction/i-execute-result.js'; export declare class ShellExecutor implements IAsyncExecutor { command: string; cwd: string; constructor(command?: string, cwd?: string); execute(): Promise; }