import { LitElement, nothing } from 'lit'; import { AskResponseReferenceBlock } from '../types'; declare const NAME = "canary-ask-block-reference"; export declare class CanaryAskBlockReference extends LitElement { block: AskResponseReferenceBlock; render(): import('lit-html').TemplateResult<1> | typeof nothing; private _handleClick; static styles: import('lit').CSSResult[]; } declare global { interface HTMLElementTagNameMap { [NAME]: CanaryAskBlockReference; } namespace JSX { interface IntrinsicElements { [NAME]: any; } } } export {};