export type CliResult = { readonly code: number; readonly stdout: string; readonly stderr: string; }; export declare function run(args: readonly string[]): Promise;