import { ReactNode, ReactNodeArray, FC, HTMLAttributes } from "react";
interface IProps extends HTMLAttributes {
children: ReactNode | ReactNodeArray;
flex?: number;
className?: string;
onClick?(e: any): void;
title?: string;
}
declare const TableCol: FC;
export default TableCol;