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