import { TitleTags } from '../../Title'; export type ElementHeaderTextType = typeof ElementHeaderText; export interface ElementHeaderTextProps { /** The first text in the ElementHeaderText Component */ firstText: string; /** Will style the first text as bold */ firstTextEmphasised?: boolean; /** The second text in the ElementHeaderText Component */ secondText?: string; /** Will style the second text as bold */ secondTextEmphasised?: boolean; /** Whether or not this ElementHeaderText is a sub text */ subText?: boolean; /** Adds custom classes to the ElementHeaderText component. */ className?: string; /** Sets the data-testid attribute. */ testId?: string; /** Changes the underlying element of the text. Default: span*/ titleHtmlMarkup?: TitleTags; /** Highlights text. Used for search results */ highlightText?: string; } export declare const ElementHeaderText: React.FC; export default ElementHeaderText;