import React from 'react'; import './index.less'; declare type HolderValue = string | number; interface HolderProps { state: any; cacheItem?: any; value?: HolderValue | HolderValue[] | null; onChange?: (val: HolderValue | HolderValue[] | null) => void; dispatch?: any; } declare const Holder: React.FC; export default Holder;