UNPKG

linkmore-design

Version:

🌈 πŸš€lmη»„δ»ΆεΊ“γ€‚πŸš€

13 lines (12 loc) β€’ 439 B
import Select from '../select'; import type { SelectProps } from '../index'; import React from 'react'; import GhostSelect from './GhostSelect'; export interface ISelectProps extends SelectProps { type?: 'select' | 'checkbox' | 'cascader'; Option?: typeof Select.Option; OptGroup?: typeof Select.OptGroup; GhostSelect?: typeof GhostSelect; } declare const NormalSelect: React.FC<ISelectProps>; export default NormalSelect;