import { LitElement } from "lit"; /** * A custom element that fetches and embeds markdown wc content. * * @example * ```html * * * * ``` */ export default class Element extends LitElement { static properties: { src: { type: StringConstructor; }; base: { type: StringConstructor; }; }; src?: string; base?: string; private fetchMarkdown; protected createRenderRoot(): this; connectedCallback(): void; /** * Inherit the `base` value from the nearest parent's HTML comment. */ private inheritBaseFromParent; private getBaseFromComments; render(): import("lit").TemplateResult<1>; } //# sourceMappingURL=markdown-wc-embed.d.ts.map