import React from 'react'; export type TableProps = { data: { [key: string]: any; }[]; title?: string; }; declare const Table: (props: TableProps) => React.JSX.Element; export default Table;