import type { SelectProps } from 'antd/es/select'; import React from 'react'; export interface DebounceSelectProps extends Omit, 'options' | 'children'> { fetchOptions: (search: string) => Promise; debounceTimeout?: number; } export declare function DebounceSelect({ fetchOptions, debounceTimeout, ...props }: DebounceSelectProps): JSX.Element;