UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

10 lines (9 loc) 365 B
import * as React from 'react'; import type { SelectProps } from '../select'; import Select from '../select'; interface MiniOrMiddleSelectInterface extends React.FC<SelectProps> { Option: typeof Select.Option; } declare const MiniSelect: MiniOrMiddleSelectInterface; declare const MiddleSelect: MiniOrMiddleSelectInterface; export { MiniSelect, MiddleSelect };