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