declare const __DEV__: boolean; declare const __TEST__: boolean; type Dict = Record; declare function isArray(value: any): value is Array; declare function isEmptyArray(value: any): boolean; declare function isObject(value: any): value is Dict; declare function isEmptyObject(value: any): boolean; declare function isEmpty(value: any): boolean; declare function isFunction(value: any): value is T; type Booleanish = boolean | "true" | "false"; declare const dataAttr: (condition: boolean | undefined) => Booleanish; declare const isNumeric: (value?: string | number) => boolean; export { type Dict, __DEV__, __TEST__, dataAttr, isArray, isEmpty, isEmptyArray, isEmptyObject, isFunction, isNumeric, isObject };