import { CliConfig, CliResult } from "./types.js"; import { CommandTree } from "../analysis/types/commands.js"; /** * read input for a command line program. * - reads args and params based on the provided config. * - returns the data all nicely organized for you to use in your program. * - autogenerates a tidy little --help page. */ export declare function cli(argv: string[], config: CliConfig): CliResult; export declare namespace cli { var execute: (argv: string[], config: CliConfig) => Promise; }