import { RichReviewCard } from '../../types'; type VideoCardProps = { background: { type: 'video'; url: string; preview: string; }; isActive: boolean; } & Omit; export declare const VideoCard: ({ product, review, background, isActive }: VideoCardProps) => import("react").JSX.Element; export {};