import * as react from 'react';
import { HTMLAttributes } from 'react';
type CardGridColumns = 2 | 3 | 4 | 'auto';
type CardGridGap = 'md' | 'lg';
interface CardGridProps extends HTMLAttributes {
as?: 'div' | 'section';
columns?: CardGridColumns;
gap?: CardGridGap;
}
declare const CardGrid: react.ForwardRefExoticComponent>;
export { CardGrid, type CardGridColumns, type CardGridGap, type CardGridProps };