import { FC } from "react";
export interface GiftBoxProps {
    title?: string;
    size?: any;
    price?: number;
    discountedPrice?: number;
    quantity?: number;
    img?: any;
    color?: string;
    tag?: string;
    onClick?: () => void;
}
export declare const GiftBox: FC<GiftBoxProps>;
export default GiftBox;
