import { TPartitioned } from './partition-args'; import { CCliArgGroup } from './c-cli-arg-group'; /** * Matches named args to named arg groups and calls the `parse` method * @param namedArgGroups From the {@link ICliCommand} * @param namedArgs The --foo bar values from the partition phase */ export declare function parseNamedArgs(namedArgGroups: { [name: string]: CCliArgGroup; }, namedArgs: TPartitioned['namedArgs']): Promise<{ [name: string]: any; }>; //# sourceMappingURL=parse-named-args.d.ts.map