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