import React, { HTMLProps } from 'react'; interface IProps extends HTMLProps { className?: string; } declare const Row: React.FC; export { Row };