import { FC, ElementType, HTMLAttributes } from 'react';
export interface CalloutTitleProps extends HTMLAttributes {
/** Classi aggiuntive per il componente */
className?: string;
/** Permette personalizzare il tag utilizzato per il contenitore del titolo (diverso da "div"). Accetta sia tag HTML che componenti React. */
tag?: ElementType;
testId?: string;
}
export declare const CalloutTitle: FC;