import * as args from './args'; import { OutputArgs, OutputFlags, ParserOutput as Output } from './parse'; export { args }; import * as flags from './flags'; export { flags }; export { flagUsages } from './help'; export declare type Input = { flags?: flags.Input; args?: args.Input; strict?: boolean; context?: any; '--'?: boolean; }; export declare function parse(argv: string[], options: Input): Output; export { OutputFlags, OutputArgs, Output };