import React from 'react'; import './index.less'; export interface AddMWCreditCardRef { init: () => void; onReset: () => void; onSubmit: () => void; close: () => void; } export interface AddMWCreditCardProps { /** 创建卡片回调 */ onCreate?: (values: any) => void; /** 店铺名称,用于授权说明文案 */ shopName?: string; /** 按钮 loading */ btnLoading?: boolean; } declare const _default: React.ForwardRefExoticComponent>; export default _default;