import React from 'react'; import { DefaultTheme } from 'styled-components'; type IGivingItemProps = { description: string; givingDate: Date; givingAmount: string; ticker: string; giftNumber: number; theme?: DefaultTheme; }; declare const GivingItem: React.FC; export default GivingItem;