import "../prototype"; import * as deepEquals from "fast-deep-equal"; /** * get Type of instance as string like "String", "Number"... * @param value * @return {string} */ declare const getType: (value: any) => string; /** * Checks value is (null, undefined) or not * @param value * @return {boolean} */ declare const has: (value: any) => boolean; declare const asEs6Module: (module: any, name?: string) => any; declare const getOrDefault: (value: T, defaultValue: T) => T; export { getType, has, asEs6Module, getOrDefault, deepEquals };