import * as React from 'react'; import { IBreakpointMap } from './IBreakpointMap'; export interface IRowProps { className?: string; gutter?: number | IBreakpointMap; type?: 'flex'; align?: 'top' | 'middle' | 'bottom'; justify?: 'start' | 'end' | 'center' | 'space-around' | 'space-between'; style?: React.CSSProperties; prefixCls?: string; }