import { HTMLAttributes } from 'react';
import { BaseComponentProps } from '../../../types';
import './Grid.css';
export interface GridProps extends BaseComponentProps, Omit, 'className' | 'style'> {
columns?: number | '1' | '2' | '3' | '4' | '5' | '6' | '12';
gap?: '0' | '1' | '2' | '3' | '4' | '5' | '6' | '8' | '10' | '12' | '16';
rowGap?: '0' | '1' | '2' | '3' | '4' | '5' | '6' | '8' | '10' | '12' | '16';
columnGap?: '0' | '1' | '2' | '3' | '4' | '5' | '6' | '8' | '10' | '12' | '16';
}
export declare const Grid: import("react").ForwardRefExoticComponent>;
//# sourceMappingURL=Grid.d.ts.map