import { LitElement } from "lit"; export default class Element extends LitElement { static styles: import("lit").CSSResult; static properties: { heading: { type: StringConstructor; }; content: { type: StringConstructor; }; }; heading: string; content: string; render(): import("lit").TemplateResult<1>; }