import * as React from 'react'; import { Select } from 'antd'; import { ICommonInputProps } from '../types'; interface F { (rawProps: ICommonInputProps): React.ReactElement; Option?: typeof Select.Option; OptGroup?: typeof Select.OptGroup; } declare const FormSelect: F; export default FormSelect;