export declare const isMap: (val: any) => val is Map; export declare const isSet: (val: any) => val is Set; export declare const isWeakMap: (val: any) => val is WeakMap; export declare const isWeakSet: (val: any) => val is WeakSet; export declare const isFn: (val: any) => val is Function; export declare const isArr: (arg: any) => arg is any[]; export declare const isPlainObj: (val: any) => val is object; export declare const isValid: (val: any) => boolean; export declare const isCollectionType: (target: any) => boolean; export declare const isNormalType: (target: any) => boolean;