import { SkfElement } from '@internal/components/skf-element.js'; import type { HeadingType } from '@internal/constants/heading.js'; import { type CSSResultGroup } from 'lit'; /** * The `` component is to deliniate content on a page. When using, take note not to skip heading levels.
* It extends the interface of native html `

` to `

` elements. * * @tagname skf-heading */ export declare class SkfHeading extends SkfElement { static styles: CSSResultGroup; /** Controls which heading element will be rendered. Should not be used to affect appearance. */ as: HeadingType; /** If provided, changes the appearance of the heading */ styledAs?: HeadingType; render(): import("lit").TemplateResult; }