export interface PanelTitleProps { /** Badge displayed in title */ badge?: React.ReactNode; /** Icon displayed in title. Only IconSize Small is supported */ icon?: React.ReactNode; /** Sets the data-testid attribute. */ testId?: string; /** Title text */ title: string | React.ReactNode; /** Title HTML markup */ titleMarkup?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; /** Highlights text in title and content. Used for search results */ highlightText?: string; } declare const PanelTitle: React.FC; export default PanelTitle;