MiniSelect.d.ts 228 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 import * as React from 'react'; import Select from '../select'; interface MiniSelectInterface extends React.FC<any> { Option: typeof Select.Option; } declare const MiniSelect: MiniSelectInterface; export default MiniSelect;