import { LitElement, nothing } from 'lit'; import { SearchResult } from '../types'; declare const NAME = "canary-search-match"; /** * @csspart match-group - Match group * @csspart match-item - Match item */ export declare class CanarySearchMatch extends LitElement { match: SearchResult; render(): import('lit-html').TemplateResult<1> | typeof nothing | undefined; static styles: import('lit').CSSResult; private is_element_defined; private _log_element_not_defined; } declare global { interface HTMLElementTagNameMap { [NAME]: CanarySearchMatch; } namespace JSX { interface IntrinsicElements { [NAME]: any; } } } export {};