import * as React from 'react'; import { CSSLength, BaseProps, SizingProp, CrossAxisAlignProp } from '../common'; export interface GridProps extends BaseProps, SizingProp, CrossAxisAlignProp { /** * Minimum spacing between children */ spacing?: CSSLength | [/** Vertical */ CSSLength, /** Horizontal */ CSSLength]; /** * Controls how the extra space around the children is handled */ justify?: /** Controls by content */ 'left' /** default */ | 'center' | 'right' /** Controls by space */ | 'space-between' | 'space-around'; } /** * Lays out children with a margin between them (horizontal and vertical) */ export declare const Grid: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=grid.d.ts.map