import type { OptionDefinition, PossibleOptionDefinition } from "../../types/command.d.ts"; /** * Gets the values of any boolean arguments that were specified on the command line with a value. * These arguments were removed by removeBooleanValues. */ declare const getBooleanValues: >(arguments_: string[], options: PossibleOptionDefinition[], optionMapByName?: Map>, optionMapByAlias?: Map>) => Partial; export default getBooleanValues;