import React from 'react'; interface Props { prop: string; label?: string; width?: number; } export type TableColumnProps = Props; declare const TableColumn: React.FC>; export default TableColumn;