interface ClassNameObjectType { [key: string]: boolean; } /** * Merge classNames by conditions. * @param {ClassNameObjectType} args The className to merge */ export default function (...args: (string | string[] | ClassNameObjectType | undefined)[]): string; export {};