import { CommandTree } from "./types/commands.js"; import { Analysis, AnalyzeOptions } from "./types/analysis.js"; /** * smartly read and validate command line input. * - takes your `commands` config into account, and validates input as such. * - input is validated and organized into a returned `tree` object. */ export declare function analyze(argw: string[], { commands }: AnalyzeOptions): Analysis;