import React from 'react'; import type { IDetailResponse } from '../../serve'; import './index.less'; interface RechargeProps { platform?: 'pc' | 'h5'; detailData?: IDetailResponse | undefined; open: boolean; onClose: () => void; } declare const Recharge: React.FC; export default Recharge;