import { BasicsAttribute } from '../../../utils/attribute'; import { SelectProps } from 'antd'; import { default as React } from 'react'; import { PopupSelectProps } from '..'; import { APP } from '../../../typings'; export interface OnChainSelectPopupProps { selectProps: Omit & { attr: BasicsAttribute; allListOptions: Record; selectPopupProps: Omit; record?: APP.instanceInfoType; /** Table Form 发生改变后的回调 */ onBlur?: () => void; }; readOnly?: boolean; value?: string; onChange?: (value: string | string[]) => void; } declare const OnChainSelectPopupForm: React.ForwardRefExoticComponent>; export default OnChainSelectPopupForm;