import { FC } from 'react'; import './index.less'; import { EventInputBaseType } from '../EventInputBaseType'; interface FlowCodeSelectProps extends EventInputBaseType { placeholder?: string; value: string; onChange: (val: string) => void; } declare const FlowCodeSelect: FC; export default FlowCodeSelect;