import type { ImageSelectorAsset } from '@amityeko/design-system/dist/elements/image-selector/types'; import { IGif } from '@giphy/js-types'; import { BadgeList } from '../badges-dashboard/types'; import { Images } from '../image-layout/types'; export interface Recognition { badge: BadgeList; background: ImageSelectorAsset; message: string; textColor: string; animation: string; images: Images; type: string; videoURL: string; videoTitle: string; videoTitleColor: string; videoData: Blob; videoKey: string; audioURL: string; audioTitle: string; audioTitleColor: string; gif?: IGif; }