import React from "react"; type NextFreebieRowProps = { name: string; minimumOrderValue: number; currency: string; themeColor?: string; tertiaryColor?: string; imageUrl?: string; criteria?: string; quantityThreshold?: number; }; export type freebieMilestoneProps = { enableFreebieMilestone: boolean; milestoneImage: { id: string; path: string; }; campaignFilter?: string; }; declare const NextFreebieRow: React.FC; export default NextFreebieRow;