import { SelectProps } from 'antd'; declare const AsyncSelect: (props: SelectProps & { mode: string; maxSelectCount?: number | undefined; showOnly?: boolean | undefined; onChange: (value: string | string[], data: any) => void; getOptionsAsync?: (() => Promise['options']>) | undefined; }) => any; export default AsyncSelect;