import React from 'react'; export interface RowProps { gutter?: number; justify?: string; align?: string; style?: React.CSSProperties; className?: string; children?: React.ReactNode; } declare const Row: (props: RowProps) => JSX.Element; export default Row;