#!/usr/bin/env node import { Command } from 'commander'; import { type CliOutputStream } from './runtime/output-coordinator'; export interface BuildCliProgramOptions { edition?: 'private' | 'community'; } export declare function buildCliProgram(options?: BuildCliProgramOptions): Command; export interface RunCliOptions { readonly program?: Command; readonly programFactory?: () => Command; readonly stdout?: CliOutputStream; readonly stderr?: CliOutputStream; } export declare function runCli(argv: ReadonlyArray, options?: RunCliOptions): Promise;