import { CSSProperties } from 'react';
export interface ProductTitleProps {
    className?: string;
    title?: string;
    activeClass?: string;
    style?: CSSProperties;
}
export declare const ProductTitle: ({ title, className, style }: ProductTitleProps) => JSX.Element;
