import './TableTree.scss'; import React, { ReactNode } from 'react'; interface ColumnDataProps { name: string; accessor: string; width: string; isClickable?: boolean; minWidth?: string; cell?: (e: any) => JSX.Element | string | ReactNode; } interface ObjectProps { [key: string]: any; } interface TableTreeProps { withCheckBox: boolean; columnsData: Array; treeData: Array; onClick?: (event: React.MouseEvent, data: any) => void; } declare const TableTree: ({ columnsData, treeData, onClick, }: TableTreeProps) => import("react/jsx-runtime").JSX.Element; export default TableTree;