import { InputProps } from 'antd'; import { FC } from 'react'; export interface OnChainInputProps extends InputProps { /** 值 */ value?: string; /** 是否自动获取焦点 */ isFocus?: boolean; } /** * 输入框 */ declare const OnChainInput: FC; export default OnChainInput;