export declare const judgeType: (value: any) => "date" | "symbol" | "error" | "function" | "undefined" | "object" | "array" | "string" | "number" | "regExp" | "boolean" | "null" | "document" | "global"; export declare const isIt: (v: any, type: string) => boolean; export declare const isObject: (v: any) => boolean; export declare const isFunction: (v: any) => boolean; export declare const isArray: (v: any) => boolean; export declare const isString: (v: any) => boolean; export declare const isNumber: (v: any) => boolean; export declare const isRegExp: (v: any) => boolean; export declare const isBoolean: (v: any) => boolean; export declare const isSymbol: (v: any) => boolean; export declare const isDate: (v: any) => boolean; export declare const isUndefined: (v: any) => boolean; export declare const isNull: (v: any) => boolean; export declare const isError: (v: any) => boolean; export declare const isDocument: (v: any) => boolean; export declare const isGlobal: (v: any) => boolean;