import type { CommandResult } from './types'; declare const Spawn: { exec: (command: string, args?: string[]) => CommandResult; }; export default Spawn;