import { ComponentProps, FC } from 'react'; import Box from '../../atoms/Box'; declare type RowProps = ComponentProps & { center?: boolean; wrap?: boolean; }; declare const Row: FC; export default Row;