import React from "react"; type GiftWrapProps = { themeColor?: string; id?: string; detail?: any; showPrice?: boolean; showProductImage?: boolean; errorText?: string; customText?: string; showGiftIcon?: boolean; addCartItem?: (variant: any, quantity?: number, triggeredFrom?: string) => Promise; removeCartItem?: (variantId: string, triggeredFrom?: string) => Promise; }; export default function GiftWrap({ themeColor, id, showPrice, detail, errorText, customText, showGiftIcon, showProductImage, addCartItem, removeCartItem, }: GiftWrapProps): React.JSX.Element | null; export {};