import { SelectProps } from 'antd'; import { PropsTypes } from '@orca-fe/deye-typings'; import { TitleContentPropsOnly } from '../title-content'; import './Select.less'; export interface CurrentSelectProps extends SelectProps, TitleContentPropsOnly { } declare const Select: { (props: CurrentSelectProps): JSX.Element; title: string; propsDef: PropsTypes[]; }; export default Select;