import React from 'react'; import type { GrootDataType } from './typing'; export interface IGrootTableProps { grootData: GrootDataType[]; } declare const GrootTable: React.FC; export default GrootTable;