@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
16 lines (15 loc) • 737 B
TypeScript
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<HeadingApi> {
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;
}