import './index.less';
import React from 'react';
export interface RowProps {
    style?: React.CSSProperties;
    className?: string;
    gutter?: [number, number];
    justify?: 'start' | 'end' | 'center' | 'space-around' | 'space-between';
    align?: 'top' | 'middle' | 'bottom';
    wrap?: boolean;
    children?: React.ReactNode;
}
declare const Row: React.MemoExoticComponent<({ ...props }: RowProps) => React.JSX.Element>;
export default Row;
