import React from 'react'; import { InputProps, InputRef } from 'antd'; import { BizCaptchaButtonProps } from '../../biz-captcha-button'; import { BizFormItemProps } from './Item'; interface VerificateCodeInputProps extends Omit { type?: 'default' | 'inline'; onGetCaptcha?: () => boolean | Promise; autoClick?: boolean; autoFocusOnGetCaptcha?: true; buttonProps?: BizCaptchaButtonProps; } export interface BizFormItemCaptchaProps extends BizFormItemProps, Pick, Pick { inputProps?: Omit; inputRef?: React.LegacyRef; } declare const BizFormItemCaptcha: React.FC; export default BizFormItemCaptcha;