export declare const __DEV__: boolean; export declare const __TEST__: boolean; export declare type Dict = Record; export declare function isArray(value: any): value is Array; export declare function isEmptyArray(value: any): boolean; export declare function isObject(value: any): value is Dict; export declare function isEmptyObject(value: any): boolean; export declare function isEmpty(value: any): boolean; export declare function isFunction(value: any): value is T;