import type { ClassNameFormatter } from '@bem-react/classname';
import type { ResponsiveValue } from '../../types/ResponsiveValue';
export type Mod = string | number | ResponsiveValue<string | number> | undefined;
export declare const useGenerateGridModsCn: (cn: ClassNameFormatter, mods: { [key in string]: Mod; }) => string;
