import type { HasComponent, HTMLAttributesWithRootRef } from '../../types';
export interface CardGridProps extends HTMLAttributesWithRootRef<HTMLDivElement>, HasComponent {
    /**
     * Размер карточек.
     */
    size?: 's' | 'm' | 'l';
    /**
     * Если true, то вокруг компонента присутствуют стандартные отсупы сверху/снизу и слева/справа.
     */
    padding?: boolean;
}
/**
 * @see https://vkui.io/components/card-grid
 */
export declare const CardGrid: ({ size, padding, Component, ...restProps }: CardGridProps) => React.ReactNode;
//# sourceMappingURL=CardGrid.d.ts.map