import * as React from "react"; import "./Table.scss"; interface Props { className?: string; th1: string; th2: string; rows: any; } export declare class Table extends React.Component { state: { tableIsOpen: boolean; }; handleToggleTable: () => void; render(): JSX.Element; } export {};