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