import * as React from "react"; import "./DetalizationTable.scss"; interface Props { className?: string; th1: string; th2: string; rows: any; } export declare class DetalizationTable extends React.Component { render(): JSX.Element; } export {};