import * as React from "react"; declare type Props = { size?: number; nowrap?: boolean; smHidden?: boolean; mdHidden?: boolean; lgHidden?: boolean; style?: any; alignItems?: string; justifyContent?: string; children: React.ReactNode; }; declare const Row: (props: Props) => JSX.Element; export default Row;