import { InputProps, ButtonProps } from '@wakeadmin/element-adapter'; import { DefineAtomicProps } from '../../atomic'; export declare enum ACaptchaStatus { Initial = "initial", Loading = "loading", Waiting = "waiting" } export type ACaptchaProps = DefineAtomicProps any; /** * 倒计时的秒数,默认 60 */ countDown?: number; /** * 获取验证码 */ onGetCaptcha?: () => Promise; /** * 自定义错误处理 */ onError?: (error: Error) => void; }>; declare global { interface AtomicProps { captcha: ACaptchaProps; } } export declare const ACaptchaComponent: import("../../atomic").AtomicComponent; export declare const ACaptcha: import("../../atomic").Atomic; //# sourceMappingURL=index.d.ts.map