#!/usr/bin/env node import { type CliResult } from './cli-support.js'; export type { CliResult } from './cli-support.js'; export declare const deriveInitId: (directory: string) => string; export declare function runCli(args: readonly string[], cwd?: string): CliResult; /** * Every verb, including the one that cannot be synchronous. * * `import xlsx` has to inflate a workbook, and the only inflater available * everywhere this runs is `DecompressionStream`, which is async. Widening * `runCli` to return a promise would change the type every one of its callers * reads - the readers half of the rule in CONTRIBUTING.md - so the async verb * gets its own entry and `runCli` keeps its signature. */ export declare function runCliAsync(args: readonly string[], cwd?: string): Promise;