import * as React from 'react'; import { Breakpoint } from '../_util/responsiveObserve'; declare const RowAligns: ["top", "middle", "bottom", "stretch"]; declare const RowJustify: ["start", "end", "center", "space-around", "space-between"]; export declare type Gutter = number | Partial>; export interface RowProps extends React.HTMLAttributes { gutter?: Gutter | [Gutter, Gutter]; align?: typeof RowAligns[number]; justify?: typeof RowJustify[number]; prefixCls?: string; wrap?: boolean; } declare const Row: React.ForwardRefExoticComponent>; export default Row;