import React from 'react';
export interface Props extends React.HTMLAttributes<HTMLSpanElement> {
    title?: string;
}
export declare const ProductTitle: ({ title, className, ...restProps }: Props) => React.JSX.Element;
export default ProductTitle;
