import { LitElement, PropertyValueMap } from 'lit'; import { IGif } from '@giphy/js-types'; import '@amityeko/design-system/dist/elements/typography/tg-title'; import '@amityeko/design-system/dist/elements/typography/tg-caption'; import '@amityeko/design-system/dist/elements/typography/tg-label-one'; import '@amityeko/design-system/dist/elements/chip'; import '@amityeko/design-system/dist/elements/video'; import '../image-layout-content'; import { Images } from '../image-layout/types'; export default class RnRRecognitionPreview extends LitElement { static styles: import("lit").CSSResult; scale?: number; badgeSrc: string; badgeName?: string; badgePoint?: number; bgFromColor?: string; bgToColor?: string; bgImage?: string; animation?: string; textColor?: string; text?: string; gifId?: string; gif?: IGif; images?: Images; videoURL?: string; videoTitle?: string; videoTitleColor?: string; isTitleEmbedded: boolean; audioURL?: string; audioTitle?: string; audioTitleColor?: string; gifUrl?: string; updated(changedProperties: PropertyValueMap | Map): void; get normilizedScale(): string; private _getNormalizedGifUrl; private _renderTextAndAudio; private _renderVideo; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'rnr-recognition-preview': RnRRecognitionPreview; } }