import { FC } from 'react'; import './index.less'; interface IDataSource { value: string; label: string; desc: string; children: IDataSource[]; } interface IProps { dataSource?: IDataSource[]; value?: string[]; lockColumns?: { label: string; value: string; }[]; locked?: boolean; onChange: (value: string[] | undefined) => void; } declare const ColumnSelect: FC; export default ColumnSelect;