import * as React from 'react'; import { RowAligns, RowJustify } from '../config-provider'; import './style/index.less'; export type Gutter = number; export interface RowProps extends React.HTMLAttributes { gutter?: Gutter; align?: RowAligns; justify?: RowJustify; wrap?: boolean; } declare const Row: React.FC; export default Row;