type ClassValueType = ClassArrayType | ClassDictionaryType | string | number | null | boolean | undefined; type ClassDictionaryType = Record; type ClassArrayType = ClassValueType[]; /** * The clsx function is a utility for conditionally joining classNames together with tailwind support. * * @return A string, but we want to return a function that * */ export declare const clsx: (...args: ClassValueType[]) => string; export {};