import type { IMedia } from '../types/Chatty.types'; interface IProps { media: IMedia; isSelected?: boolean; } export declare function VideoThumbnail({ media, isSelected }: IProps): JSX.Element; export {};