import React from 'react'; export interface RowProps extends React.HTMLProps { className?: string; tag?: string; } declare const Row: (props: RowProps) => React.ReactElement; export default Row;