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