import { FC } from 'react'; import './row.css'; interface RowInterface { children: JSX.Element; resuablelineTable?: boolean; } declare const Row: FC; export default Row;