import { ReactChild } from 'react'; import './index.less'; export interface SelectItemProps { type: 'Select' | 'ColorPicker' | 'SelectInput'; value: any; options?: { title: string; value: any; }[]; onChange: (newVal: any) => void; children?: ReactChild; } declare const SelectItem: (props: SelectItemProps) => JSX.Element; export default SelectItem;