import * as args from './args'; import * as flags from './flags'; import { OutputArgs, OutputFlags, ParserOutput as Output } from './parse'; export { args }; 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 };