import { HNDesignsystemInfoTeaser } from '../../resources/Resources'; import { InfoTeaserTags } from '../InfoTeaser'; import { TitleTags } from '../Title'; export interface HelpTeaserProps { /** What's in the box? */ children: React.ReactNode; /** Override the default max height for collapsed teaser. Default is 12.25rem */ collapsedMaxHeight?: string; /** Changes the underlying element of the wrapper */ htmlMarkup?: InfoTeaserTags; /** Resources for component */ resources?: Partial; /** Sets the data-testid attribute */ testId?: string; /** Title on top of the component */ title: string; /** Markup props for title */ titleHtmlMarkup?: TitleTags; } declare const HelpTeaser: React.FC; export default HelpTeaser;