import { type TemplateResult } from "lit"; import Link from "../link/component.js"; /** * {@linkcode Heading} renders a heading. * * If the id is provided, the anchor will be displayed. * * @slot - Heading content. * @category layout */ declare class Heading extends Link { /** * The heading level. */ as: "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; /** * The anchor prefix. * * Element must have an id to be displayed. */ anchor: string; /** * The anchor side. */ side: "left" | "right"; protected render(): TemplateResult<1>; protected wrapHeading(...children: any[]): TemplateResult<1>; } export default Heading; export { Heading };