import React from "react"; import type { AcademyCertificate } from "../AcademyPage.types"; interface AcademyCertificateCardProps { certificate: AcademyCertificate; canDownloadCertificate: boolean; isDownloadingCertificate: boolean; hasDownloadCallback: boolean; onDownloadCertificate: () => void; isPremium: boolean; } declare const AcademyCertificateCard: React.FC; export default AcademyCertificateCard;