import React from "react";
interface Title {
title: string;
price: string;
compPrice: string;
type?: string;
handle?: any;
currency: any;
isActive?: boolean;
insights?: any;
productInfo?: any;
}
declare const Title: React.FC<Title>;
export default Title;