/** * Adopted from MIT-licensed https://github.com/lukeed/clsx/blob/08a5a7f3f61fd05036c8599e4c4a4e5cdef43d7a/src/index.js */ type TPrim = string | number | boolean | void | undefined | null; type TVal = TPrim | Record | Array; export declare function clsx(...args: TVal[]): string; export {};