import { FC, PropsWithChildren } from 'react'; interface IRowProps { className?: string; wrap?: boolean; align?: 'top' | 'middle' | 'bottom'; justify?: 'start' | 'end' | 'center' | 'space-around' | 'space-between'; } declare const Row: FC>; export default Row;