import React from 'react'; import { ColProps } from '../col'; import { BaseProps } from '../_utils/props'; export declare type RowAlign = 'top' | 'center' | 'bottom' | 'baseline'; export declare type RowJustify = 'start' | 'end' | 'center' | 'space-around' | 'space-between' | 'space-evenly'; export interface RowProps extends BaseProps { gutter?: number; gutterSide?: boolean; align?: RowAlign; justify?: RowJustify; children: React.ReactElement; } declare const Row: (props: RowProps) => JSX.Element; export default Row;