import { ClassValue } from 'clsx';

declare const cn: (...inputs: ClassValue[]) => string;
declare function composeTailwindRenderProps<T>(className: string | ((v: T) => string) | undefined, tailwind: string): string | ((v: T) => string);

export { cn, composeTailwindRenderProps };
