import { LitElement } from "lit-element"; import VanillaSelecto, { SelectoOptions, SelectoMethods } from "selecto"; import { MethodInterface } from "framework-utils"; export declare class LitSelecto extends LitElement { private selecto; firstUpdated(): void; updated(changedProperties: any): void; disconnectedCallback(): void; } export interface LitSelecto extends SelectoOptions, MethodInterface { } declare global { interface HTMLElementTagNameMap { "lit-selecto": LitSelecto; } }