import { PropsWithChildren, ReactElement } from 'react'; import type { ArrayItem } from '../../types'; interface TableComponentProps { root: ArrayItem; id?: string; value?: any; onChange?: Function; } declare function TableComponent(props: PropsWithChildren): ReactElement; export default TableComponent;