export 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 type Booleanish = boolean | "true" | "false"; export declare const dataAttr: (condition: boolean | undefined) => Booleanish; export declare const isNumeric: (value?: string | number) => boolean;