export interface ProductTitleProps {
    title?: string;
    className?: string;
}
export declare const ProductTitle: ({ title, className }: ProductTitleProps) => JSX.Element;
