import React, { ComponentProps } from 'react'; import { Select as AntSelect } from 'antd'; type SelectProps = ComponentProps & { async?: boolean; debounceTimeout?: number; isOpen?: boolean; wrapOptionText?: boolean; }; declare const Select: (props: SelectProps) => React.ReactNode; export default Select;