import React from "react"; export interface MyAccountChooseCharityCardProps { className?: string; title?: string; description?: string; buttonText?: string; onClick?: () => void; width: string; } declare const MyAccountChooseCharityCard: ({ className, title, buttonText, onClick, width, }: MyAccountChooseCharityCardProps) => React.JSX.Element; export default MyAccountChooseCharityCard;