/** * The function implements a measure of css module classes by combining them separated by a space * * @author: Aleksandr Bavin * @date: 2020-02-20 */ declare type ClassNameCollection = { [key: string]: string | undefined; }; declare type ClassNameCollectionOrUndefined = ClassNameCollection | undefined; /** * @deprecated * @param classNameCollections */ export declare function mergeClassNamesCollections(...classNameCollections: T[]): T; export {};