import React from 'react'; import { SelectValue, SelectProps, RefSelectProps } from 'antd/lib/select/index'; declare const SelectRef: (props: SelectProps & { ref?: React.Ref | undefined; }) => React.ReactElement; declare type InternalSelectType = typeof SelectRef; interface SelectInterface extends InternalSelectType { Option: any; OptGroup: any; } export declare const PhenomSelect: SelectInterface; export {};