import React from 'react'; import type { SelectProps } from '../../ui/Select/interfaces'; import { FormItemProps } from '../Item'; import { InputComponentWithName } from '../interfaces'; import { OptionType } from '../../dataProvider'; export interface AjaxSelectInputProps extends Omit, FormItemProps { name: string; fetchOptions: (field: string, query?: string) => Promise; fetchTimeout?: number; onChange?: (value: any) => void; } export declare const AjaxSelectInput: InputComponentWithName>;