declare type Falsy = undefined | null | false | 0 | ''; interface ArgMap { [key: string]: any; } declare type ArgArray = Array; declare type Arg = string | ArgMap | ArgArray | Falsy; export default function classNames(...args: Arg[]): string; export {};