import { InputProps } from 'antd/es/input'; import { FC, IglooComponentProps } from '../types'; import './style/index'; interface CardConfig { name: string; reg: string; icon: any; } type Props = InputProps & IglooComponentProps & { cardConfig?: CardConfig[]; }; declare const IglooCredit: FC; export default IglooCredit;