import { Discount } from '@open-tender/types';
import { ReactNode } from 'react';
import { Handlers, ScreenConfig } from '../types';
export interface LoyaltyDiscountProps {
    config: ScreenConfig;
    cardConfig: ScreenConfig;
    handlers: Handlers;
    discount: Discount;
    isApplied: boolean;
    isLast?: boolean;
    renderApplied?: () => ReactNode;
    apiUrl: string;
}
