import { BoxProps } from 'theme-ui'; import React from 'react'; export interface GridProps extends BoxProps { align?: 'stretch' | 'flex-start' | 'flex-end' | 'center'; autoFlow?: string; center?: boolean; childPadding?: string; className?: string; columnGap?: number | (number | null)[] | string | (string | null)[]; columns: number | (number | null)[] | 'auto-fit' | 'auto-fill'; minColumnWidth?: string; margins?: string; maxWidth?: string | number; rowGap?: number | (number | null)[] | string | (string | null)[]; } declare const Grid: React.ForwardRefExoticComponent & React.RefAttributes>; export default Grid;