type Input = string | number | boolean | null | undefined; type Inputs = Input | Array; /** * Export the makeCls function as cx * @deprecated Use cn instead (import cn from 'classnames'). */ export declare const cx: typeof makeCls; export default function makeCls(...inputs: Inputs[]): string; export {};