import { ArgParser } from './argparser'; import { From, OutputOf } from './from'; import { ProvidesHelp, LongDoc, Descriptive, ShortDoc } from './helpdoc'; import { HasType } from './type'; declare type MultiFlagConfig> = HasType & LongDoc & Partial; /** * Like `option`, but can accept multiple options, and expects a decoder from a list of strings. * An error will highlight all option occurences. */ export declare function multiflag>(config: MultiFlagConfig): ArgParser> & ProvidesHelp; export {};