import { ClassValue } from 'clsx';
/**
 * Utility function for combining class names with conditional logic.
 * Removes falsy values, supports nested arrays and conditional checks.
 * Built on top of [clsx](https://github.com/lukeed/clsx).
 */
export declare const cn: (...inputs: ClassValue[]) => string;
