import React from 'react' interface IColumn { key: string | number title: string } interface IRow { key: string | number value: string onClick?: () => void } interface ITableProps extends React.HTMLAttributes { columns: IColumn[] rows: IRow[][] } declare const Table: React.FC export default Table