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