/**
 * 简单的工具集
 *
 */
/**
 * 获取值的类型，并返回全小写的字符串
 * @export
 * @param {*} value
 * @returns {string} 全小写的字符串
 */
export declare function getType(value: any): string;
/**
 * 判断值的类型
 * @param value 目标值
 * @param type 目标类型
 * @returns boolean
 */
export declare function isType<P>(value: any, type: string): value is P;
export declare function isBlankValue(param: any): boolean;
