import * as React from 'react'; export declare type Breakpoint = 'xxl' | 'xl' | 'lg' | 'md' | 'sm' | 'xs'; export declare type BreakpointMap = Partial>; export interface RowProps extends React.HTMLAttributes { gutter?: number | Partial>; type?: 'flex'; align?: 'top' | 'middle' | 'bottom'; justify?: 'start' | 'end' | 'center' | 'space-around' | 'space-between'; prefixCls?: string; } export interface RowState { screens: BreakpointMap; } declare const Row: React.FC; export default Row;