import React from 'react'; import type { SelectProps } from 'antd/es/select'; export interface DebounceSelectProps extends Omit, 'options' | 'children'> { fetchOptions: (search: string) => Promise; debounceTimeout?: number; fieldNames?: { label: string; value: string; }; selectRef?: (el: { current: { focus: () => void; blur: () => void; }; }) => void; searchOnFocus?: boolean; field: any; } export declare function DebounceSelect({ fetchOptions, debounceTimeout, field, ...props }: DebounceSelectProps): JSX.Element; declare const YSearchSelect: (props: any) => JSX.Element; export default YSearchSelect;