import React from 'react'; import { Select as OriginalSelect } from 'antd'; import type { SelectProps } from 'antd'; import './index.less'; interface CompoundedComponent extends React.ForwardRefExoticComponent { Option: typeof OriginalSelect.Option; } declare const Select: CompoundedComponent; export default Select;