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