import { ReactNode } from 'react'; export interface ProductTitleProps { title?: string; backHandler?: () => void; children?: ReactNode; } export declare const ProductTitle: ({ title, backHandler, children }: ProductTitleProps) => JSX.Element;