import { LitElement, nothing } from 'lit'; declare const NAME = "canary-search"; /** * @csspart container - Container * @slot head - Head * @slot body - Body */ export declare class CanarySearch extends LitElement { readonly MODE = "Search"; private _mode?; private _containerRef; connectedCallback(): void; render(): import('lit-html').TemplateResult<1> | typeof nothing; static styles: import('lit').CSSResult[]; } declare global { interface HTMLElementTagNameMap { [NAME]: CanarySearch; } namespace JSX { interface IntrinsicElements { [NAME]: any; } } } export {};