import React from "react"; export interface InfoRepresentCampaignProps { id?: string; campaignCreator: string; rasingFundsFor: string; fundsBankedTo: string; avatar: string; clickOnFollow: () => void; } declare const InfoRepresentCampaign: ({ campaignCreator, rasingFundsFor, fundsBankedTo, avatar, clickOnFollow, }: InfoRepresentCampaignProps) => React.JSX.Element; export default InfoRepresentCampaign;