import { CometChatTextFormatter } from "@cometchat/uikit-shared"; import { LitElement, PropertyValueMap } from "lit"; import { TextBubbleStyle } from "./TextBubbleStyle"; export declare class CometChatTextBubble extends LitElement { text: string; textStyle: TextBubbleStyle; textFormatters?: Array; timeoutID: any; static styles: import("lit").CSSResult[]; render(): import("lit-html").TemplateResult<1>; protected updated(_changedProperties: PropertyValueMap | Map): void; pasteHtml(textElement: any, html: any): void; textStyles(): { color: string; font: string; }; messageKitBlockStyle: () => { width: string | undefined; height: string | undefined; border: string | undefined; borderRadius: string | undefined; background: string | undefined; padding: string; }; } declare global { namespace JSX { interface IntrinsicElements { "cometchat-text-bubble": any; } } interface TagNameMap { "cometchat-text-bubble": CometChatTextBubble; } } //# sourceMappingURL=cometchat-text-bubble.d.ts.map