import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import type { JSXBase } from '../../stencil-public-runtime'; import type { HeadingLevel } from '../../schema'; type HGroupProps = JSXBase.HTMLAttributes; type BaseProps = JSXBase.HTMLAttributes & { level?: HeadingLevel; }; type HeadlineProps = BaseProps; type SecondaryHeadlineProps = JSXBase.HTMLAttributes; export type HeadingProps = HeadlineProps & { secondaryHeadline?: string; HeadingGroupProps?: HGroupProps; SecondaryHeadlineProps?: SecondaryHeadlineProps; }; type HeadlineTag = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'strong'; export declare function getHeadlineTag(level: HeadingLevel | number): HeadlineTag; declare const KolHeadingFc: FC; export default KolHeadingFc;