import type { JSX } from '../../stencil-public-runtime'; import type { WebComponentInterface } from '../../internal/functional-components/generic-types'; import type { HeadingApi } from '../../internal/functional-components/heading/api'; import type { HeadingLevel, LabelWithExpertSlotPropType } from '../../schema'; export declare class KolHeading implements WebComponentInterface { private readonly ctrl; _label: LabelWithExpertSlotPropType; watchLabel(value?: LabelWithExpertSlotPropType): void; _level?: HeadingLevel; watchLevel(value?: HeadingLevel): void; _secondaryHeadline?: string; watchSecondaryHeadline(value?: string): void; componentWillLoad(): void; render(): JSX.Element; }