import * as react from 'react';
import { HTMLAttributes } from 'react';
type GridColumns = 1 | 2 | 3 | 4 | 'auto';
type GridGap = 'sm' | 'md' | 'lg';
interface GridProps extends HTMLAttributes {
as?: 'div' | 'section';
columns?: GridColumns;
gap?: GridGap;
}
declare const Grid: react.ForwardRefExoticComponent>;
export { Grid, type GridColumns, type GridGap, type GridProps };