import React, { CSSProperties, ReactElement } from 'react'; import type { DataSourcePanelTypeKey, OpenDataSourcePanelParams } from '../../../DataSource/DataSoureBlindPannel/interface'; import './index.less'; interface DataBindProps { expression?: string; control?: ReactElement; isBind: boolean | undefined; pannelType?: DataSourcePanelTypeKey; pannelProps: OpenDataSourcePanelParams; disabled?: boolean; reviewHeight?: number; isIconFloat?: boolean; iconStyle?: CSSProperties; i18nNode?: React.ReactNode; bindType?: string; } declare const DataBind: React.FC; export default DataBind;