import type { FC } from 'react'; import React from 'react'; import './index.less'; interface TableDataBindPanelProps { selectedSourceVal: any; showRemoveButton: boolean; compName: string; updataSelectedRowKeys: (value: any) => void; updateShowRemoveButton: (isShow: boolean) => void; renderDataTable: any; setSelectedSource: (value: any) => void; selectedSource: any; pageDataSource: any; isSelectGlobalDataRef: React.MutableRefObject; setShowDataSourceModal?: (value: boolean) => void; } declare const TableDataBindPanel: FC; export default TableDataBindPanel;