import React from 'react';
interface TableProps {
    backgroundColor: string;
}
declare const Table: React.FC<TableProps>;
export default Table;
