import * as React from 'react'; import type { FreeGift, FreeGiftWithSelection } from './types.js'; export interface GiftSelectionProps extends React.HTMLAttributes { /** 赠品标签文本 */ freeGiftLabel?: string; /** 赠品列表(包含选择状态) */ freeGifts?: FreeGiftWithSelection[]; /** 赠品点击回调 */ onGiftClick?: (gift: FreeGift) => void; /** 赠品类型 1-> 单选模式, 2 -> 全选模式 */ giftType?: 1 | 2; selectedGiftSku?: string; } /** * GiftSelection - 赠品选择区域 */ declare const GiftSelection: React.ForwardRefExoticComponent>; export default GiftSelection;