import type { CommandExecutor, CommandExecutorOptions } from '../definitions.js'; export declare class TinyexecCommandExecutor implements CommandExecutor { execute(command: string, args?: Array, options?: CommandExecutorOptions): Promise<{ stdout: string; }>; }