import isFunction from 'lodash-es/isFunction'; import isString from 'lodash-es/isString'; import isArray from 'lodash-es/isArray'; import isObject from 'lodash-es/isObject'; import isUndefined from 'lodash-es/isUndefined'; import uniq from 'lodash-es/uniq'; import clone from 'lodash-es/clone'; import cloneDeep from 'lodash-es/cloneDeep'; declare const noop: () => void; declare const yes: () => boolean; declare const no: () => boolean; declare const identity: (arg: any) => any; declare function defaults(...args: any[]): T; declare function override(dst: any, src: any): any; export { isFunction, isString, isArray, isObject, isUndefined, uniq, clone, cloneDeep, noop, yes, no, identity, defaults, override };