import type { RunOutput } from "./cli/cli"; import { GrowCli } from "./cli/cli"; export declare function runCli({ args, cli, exitOnError, initLogger, }?: { args?: string[]; cli?: GrowCli; exitOnError?: boolean; initLogger?: boolean; }): Promise<{ cli: GrowCli | undefined; result: RunOutput | undefined; }>;