import React, { ReactNode } from 'react';
import { DataTrackingTypeHTMLElement } from "../../../types";
export type VoucherItemProps = {
    image: string;
    title?: ReactNode;
    description?: ReactNode;
    onClick?: () => void;
    className?: string;
    dataTracking?: DataTrackingTypeHTMLElement;
};
declare const VoucherItem: ({ image, title, description, onClick, className, dataTracking, }: VoucherItemProps) => React.JSX.Element;
export { VoucherItem };
