declare const _default: ({ validator, showTip, ...props }: { /** * 获取图形验证码 */ getImg: () => Promise; /** * 校验图形验证码 */ validator: (code: string) => Promise; /** * 弹窗title类名 */ titleCls?: string | undefined; /** * 验证码类名 */ imgCls?: string | undefined; /** * 显示 * @default true */ showTip?: boolean | undefined; }) => Promise; export default _default;