import * as React from 'react'; export interface Cell { customStyle?: { [key: string]: string; }; content: React.ReactNode; } export interface Row { customStyle?: { [key: string]: string; }; content: Cell[]; } export interface Props { id?: string; header?: Cell[]; children?: React.ReactNode; rows?: Row[]; rowTheme?: { [key: string]: string; }; } export default class Table extends React.PureComponent { render(): JSX.Element; }