import { LoyaltyProgram } from '@open-tender/types'; import { AccountLoyaltyProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const AccountLoyalty: ({ loyaltyProgram, navigate, children, renderRewards, navigateTo }: { loyaltyProgram: LoyaltyProgram; navigate: (route: string) => void; children: (props: AccountLoyaltyProps) => ReactNode; renderRewards: () => ReactNode; navigateTo?: string; }) => ReactNode; export default AccountLoyalty;