import { LitElement } from 'lit'; import { AskFunction, SearchFunction } from '../types'; declare const NAME = "canary-provider-cloud"; export declare class CanaryProviderCloud extends LitElement { apiBase: string; /** * @deprecated use `project-key` instead */ apiKey: string; projectKey: string; connectedCallback(): void; render(): import('lit-html').TemplateResult<1>; static styles: import('lit').CSSResult; private _dispatchOperations; private _meta; search: SearchFunction; ask: AskFunction; } declare global { interface HTMLElementTagNameMap { [NAME]: CanaryProviderCloud; } namespace JSX { interface IntrinsicElements { [NAME]: any; } } } export {};