import { Discounts } from '@open-tender/types'; import { AppliedProps, RewardProps, RewardsProps } from '@open-tender/ui'; import React, { ReactNode } from 'react'; declare const Rewards: ({ title, subtitle, rewards, children, RewardView, AppliedView }: { title: string; subtitle?: string; rewards: Discounts; children: (props: RewardsProps) => ReactNode; RewardView: (props: RewardProps) => ReactNode; AppliedView: (props: AppliedProps) => ReactNode; }) => React.ReactNode; export default Rewards;