import './Grid.css'; import type { ReactNode } from 'react'; import type { ResponsiveValue } from '../../types/ResponsiveValue'; export declare const gridItemColVariant: readonly [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; export type GridItemColVariant = (typeof gridItemColVariant)[number]; export declare const gridItemRowVariant: readonly [1, 2, 3, 4, 5, 6]; export type GridItemRowVariant = (typeof gridItemRowVariant)[number]; export declare const cnGridItem: import("@bem-react/classname").ClassNameFormatter; export type GridItemProps = { /** Количество колонок которое будет занимать элемент в сетке */ col?: ResponsiveValue; /** С какой колонки начинать позиционировать элемент */ colStart?: ResponsiveValue; /** Количество строк которых будет занимать элемент в сетке */ row?: ResponsiveValue; /** С какой строки начинать позиционировать элемент */ rowStart?: ResponsiveValue; /** Содержимое компонента */ children?: ReactNode; /** Дополнительные СSS-классы */ className?: string; }; export declare const GridItem: import("../../utils/polymorphicComponentWithRef").PolymorphicComponentWithRef;