import React from 'react'; interface TableProps { headers: string[]; rows: string[][]; columnWidths?: number[]; } export declare const Table: React.FC; export {};