import React from 'react';
import { ImageWrapV2Props } from "../../atoms";
export type CertificateItemProps = {
    image: string;
    title: string;
    description: string;
    className?: string;
    imageProps?: Partial<ImageWrapV2Props>;
};
declare const CertificateItem: ({ image, description, title, className, imageProps, }: CertificateItemProps) => React.JSX.Element;
export { CertificateItem };
