import { CCliTree } from './c-cli-tree'; /** Thrown to print usage documentation and an error message */ export declare class CCliUsageError extends Error { readonly message: string; tree?: CCliTree | undefined; /** * @param message If provided, the {@link CCli} runner will also print * "Error: \" when it encounters this error * @param tree Used internally for constructing the command-line usage string * */ constructor(message?: string, tree?: CCliTree | undefined); } //# sourceMappingURL=c-cli-usage-error.d.ts.map