import '@fontsource/space-grotesk'; import '@fontsource/space-grotesk/700.css'; import { FC, MouseEventHandler } from 'react'; export interface CertificateProps { id: string; allocatedAmount: string; retiredAmount: string; clientName: string; createdDate: string; QRCodeUrl: string; backgroundGradientHash: number; updatedDate?: string; onClick?: MouseEventHandler; } declare const Certificate: FC; export default Certificate;