/** * Inline implementation of the `clsx` class-name joining utility. * * API-compatible with the MIT-licensed `clsx` npm package — this is a * clean-room rewrite against the public API surface veryfront uses (named * `clsx` export and `ClassValue` type); no source was copied. * * Replaces the `clsx` npm dep per spec §8.3 (inline micro-utilities in core). */ export type ClassValue = string | number | boolean | null | undefined | Record | ClassValue[]; type Value = ClassValue; export declare function clsx(...args: Value[]): string; export {}; //# sourceMappingURL=clsx.d.ts.map