export type RewardModalProps = {
    amountShow?: number | string;
    show: boolean;
    close: () => void;
    bannerImage?: string;
    translationConfig: {
        header?: string;
    };
    learnMoreConfig: {
        header?: string;
        learnMore: string;
        learnMoreLink?: string;
        cardTwoDescription: string;
        cardTwoVoucherAmount: string;
        cardOneDescription: string;
        cardOneVoucherAmount: string;
        tagLine: string;
        loyaltyLogoWhite: string;
        loyaltyBanner: string;
    };
};
