import type { DataSourceInfo } from '@/types'; import 'antd/lib/button/style/index.css'; import type { FC } from 'react'; import './index.less'; export interface IProps { value?: DataSourceInfo; onChange?: (data: DataSourceInfo) => void; DSLCore?: any; } declare const DataSourceChoice: FC; export default DataSourceChoice;