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<HTMLElement>;
}
declare const Certificate: FC<CertificateProps>;
export default Certificate;
