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