import { LitElement } from 'lit'; import { ProviderStore } from './state/store'; /** * The Ol Highlight element * * Allows highlighting of the selected lines and elements * on the page. */ export declare class OlHighlight extends LitElement { highlight: boolean; highlightColor: string; activeElement: ProviderStore['activeElement'] | null; currentY: number; getLineheight(): number; getWidth(): number; getYOffset(): number; getXOffset(): number; getColor(): string; applyCurrentY(): void; static styles: import("lit").CSSResult; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'ol-highlight': OlHighlight; } } //# sourceMappingURL=ol-highlight.d.ts.map