import React from 'react'; import { Select } from '../Select'; import type { SelectProps } from '../Select/interfaces'; interface MiniOrMiddleSelectInterface extends React.FC { Option: typeof Select.Option; } export declare const MiddleSelect: MiniOrMiddleSelectInterface; export declare const MiniSelect: MiniOrMiddleSelectInterface; export {};