UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

14 lines (13 loc) 568 B
import type { JSX } from '../../stencil-public-runtime'; import type { HeadingAPI, HeadingLevel, HeadingStates, LabelWithExpertSlotPropType } from '../../schema'; export declare class KolHeading implements HeadingAPI { _label: LabelWithExpertSlotPropType; _level?: HeadingLevel; _secondaryHeadline?: string; state: HeadingStates; validateLabel(value?: LabelWithExpertSlotPropType): void; validateLevel(value?: HeadingLevel): void; validateSecondaryHeadline(value?: string): void; componentWillLoad(): void; render(): JSX.Element; }