import React from 'react'; import * as StyledSystem from 'styled-system'; import { GridProps } from '../Grid'; export interface SimpleGridProps extends GridProps { /** * The width at which child elements will break into columns. Pass a number for pixel values or a string for any other valid CSS length. */ minChildWidth?: GridProps['minWidth']; /** * The number of columns */ columns?: StyledSystem.ResponsiveValue; /** * The gap between the grid items */ spacing?: GridProps['gridGap']; /** * The column gap between the grid items */ spacingX?: GridProps['gridGap']; /** * The row gap between the grid items */ spacingY?: GridProps['gridGap']; } /** * Extends Grid * * An alternative to the simple Grid component that aims to conventiently help with the average * use cases of a grid. * * Inspired from Chakra UI */ export declare const SimpleGrid: React.ForwardRefExoticComponent & React.RefAttributes>; export default SimpleGrid;