import { ArgParser } from './argparser'; import { OutputOf } from './from'; import { ProvidesHelp, LongDoc, ShortDoc, Descriptive } from './helpdoc'; import { Type, HasType } from './type'; declare type MultiOptionConfig> = 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 multioption>(config: MultiOptionConfig): ArgParser> & ProvidesHelp; export {};