type Dict = Record; declare function isArray(value: unknown): value is Array; declare function isEmptyArray(value: unknown): boolean; declare function isObject(value: unknown): value is Dict; declare function isEmptyObject(value: unknown): boolean; declare function isEmpty(value: unknown): boolean; type Booleanish = boolean | "true" | "false"; declare const dataAttr: (condition: boolean | undefined) => Booleanish; declare const ariaAttr: (condition: boolean | undefined) => Booleanish; export { type Dict, ariaAttr, dataAttr, isArray, isEmpty, isEmptyArray, isEmptyObject, isObject };