import * as tailwind_variants from 'tailwind-variants'; type ClassValue = ClassArray | ClassDictionary | string | number | bigint | null | boolean | undefined; type ClassDictionary = Record; type ClassArray = ClassValue[]; /** * We need to extend the tailwind merge to include HeroUI's custom classes. * * So we can use classes like `text-small` or `text-default-500` and override them. */ declare function cn(...inputs: ClassValue[]): tailwind_variants.CnReturn; export { type ClassArray, type ClassDictionary, type ClassValue, cn };