import React from "react"; interface FrpInfomationProps { donations: number; amountRaised: number; amountGoal: number | null; sqSize: number; strokeWidth: number; closedDate?: string | undefined; customRow?: React.ReactNode; manageLink?: string; thankLink?: string; handleCertificateMemento?: () => void; handleDeleteFrp?: () => void; } declare const FrpInfomation: ({ donations, amountRaised, amountGoal, sqSize, strokeWidth, closedDate, customRow, thankLink, handleCertificateMemento, handleDeleteFrp, }: FrpInfomationProps) => React.JSX.Element; export default FrpInfomation;