import { LitElement } from 'lit'; declare const NAME = "canary-search-match-base"; /** * @csspart container - Container of the match * * @slot content-before - Content before the match * @slot url - URL of the match * @slot title-icon - Icon for the title * @slot title - Title of the match * @slot title-badge - Badge displayed next to the title * @slot excerpt - Excerpt of the match * @slot sub-results - Sub-results related to the match */ export declare class CanarySearchMatchBase extends LitElement { url: string; render(): import('lit-html').TemplateResult<1>; private _handleClick; static styles: import('lit').CSSResult[]; } declare global { interface HTMLElementTagNameMap { [NAME]: CanarySearchMatchBase; } namespace JSX { interface IntrinsicElements { [NAME]: any; } } } export {};