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