import * as child_process from 'node:child_process'; export interface CLICommand { /** * Run the command and do *something* */ run(argv: string[]): Promise; } export declare function processSpawnResult(result: child_process.SpawnSyncReturns): void;