import { GridSettings } from "handsontable/settings"; import { RowObject } from "handsontable/common"; interface TableProps { config: GridSettings; data?: any[][] | RowObject[] | undefined; onChange: (data: any) => void; disabled?: boolean; } declare const HandsonTable: ({ config, data, onChange, disabled }: TableProps) => import("react/jsx-runtime").JSX.Element; export default HandsonTable;