import React from 'react'; import { Select } from '../select'; interface MiniOrXsSelectInterface extends React.FC { Option: typeof Select.Option; } declare const XsSelect: MiniOrXsSelectInterface; declare const MiniSelect: MiniOrXsSelectInterface; export { MiniSelect, XsSelect };