import * as React from 'react'; import type { FreeGift, FreeGiftWithSelection } from './types.js'; export interface FreeGiftItemProps extends Omit, 'onClick'> { /** 赠品数据(包含选择状态) */ gift: FreeGiftWithSelection; /** 点击回调 */ onClick?: (gift: FreeGift) => void; /** 赠品类型 1-> 单选模式, 2 -> 全选模式 */ giftType?: 1 | 2; } /** * FreeGiftItem - 免费赠品项 */ declare const FreeGiftItem: React.ForwardRefExoticComponent>; export default FreeGiftItem;