import { LitElement } from 'lit'; import { AvatarStyle } from '../CometChatAvatar/AvatarStyle'; import { CardStyle } from './CardStyle'; export declare class CometChatCard extends LitElement { id: string; avatarURL: string; avatarName: string; title: string; cardStyle: CardStyle; avatarStyle: AvatarStyle; static styles: import("lit").CSSResult[]; render(): import("lit-html").TemplateResult<1>; cardViewStyle: () => { background: string | undefined; width: string | undefined; height: string | undefined; border: string | undefined; borderRadius: string | undefined; }; titleStyle(): { textFont: string | undefined; textColor: string | undefined; }; } declare global { namespace JSX { interface IntrinsicElements { "cometchat-card": any; } } interface HTMLElementTagNameMap { 'cometchat-card': CometChatCard; } } //# sourceMappingURL=cometchat-card.d.ts.map