import { SelectProps } from 'antd'; import { FC } from 'react'; export interface OnChainPopupSelectProps { url: any; onChange?: (url: string) => {}; value?: any; fieldNames?: Object; params?: Object; ischeckbox?: boolean; getPageList?: ({ ...arg }: { [x: string]: any; }) => any; } export interface DebounceSelectProps extends Omit, 'options' | 'children'> { fetchOptions: (search: string, props: any) => Promise; debounceTimeout?: number; options: ValueType[]; } declare const OnChainSearchSelect: FC; export default OnChainSearchSelect;