import Command from './Command'; export declare const removeBrackets: (v: string) => string; export declare const findAllBrackets: (v: string) => { required: boolean; value: string; variadic: boolean; }[]; export declare const getMriOptions: (globalCommand: Command, subCommand?: Command | undefined) => { default: {}; boolean: string[]; alias: {}; string: string[]; }; export declare const findLongest: (arr: string[]) => string; export declare const padRight: (str: string, length: number) => string; export declare const camelcase: (input: string) => string; export declare const setDotProp: (obj: { [k: string]: any; }, keys: string[], val: any) => void;