import { CliCommandDefinitionOption, CliValueType, MriOpts } from './types'; export declare const isFunction: (f: any) => boolean; export declare const isRegExp: (r: any) => boolean; export declare const dashCase: (base: string) => string; export declare const passedOptionsToNames: (passed: string[], options: CliCommandDefinitionOption[]) => string[]; export declare const getOptionsMriOpts: (options?: CliCommandDefinitionOption[]) => MriOpts; export declare const coerceCliValue: (value: string | number | boolean, type?: CliValueType) => string | number | boolean; export declare const camelCase: (input: any, options?: { pascalCase: boolean; }) => any;