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