import React from "react"; export interface CharityCardProps { className?: string; title?: string; } declare const CharityCard: ({ className, title }: CharityCardProps) => React.JSX.Element; export default CharityCard;