import { type ClassValue } from 'clsx'; /** * Merges a list of Tailwind CSS class name inputs into a single deduplicated * class string. * * First runs `clsx` to flatten arrays, booleans and object shorthand into a * flat list, then pipes the result through `tailwind-merge` so that later * utilities override earlier ones on the same property (e.g. `px-2 px-4` * collapses to `px-4`). This is the canonical PieUI helper for composing * className props. * * @param inputs Any combination of strings, arrays, objects or falsy values * accepted by `clsx`. * @returns A merged, whitespace-separated class name string. */ export declare function cn(...inputs: ClassValue[]): string; //# sourceMappingURL=tailwindCommonUtils.d.ts.map