import { type ClassValue } from "clsx"; /** * Combine tailwind classes with clsx and tailwind-merge * @param inputs - tailwind classes */ export declare const cn: (...inputs: ClassValue[]) => string; /** * Create a style tag with the given CSS. */ export declare const css: (strings: TemplateStringsArray, ...values: Array) => import("react/jsx-runtime").JSX.Element;