export type VideoLinkProps = { image?: string; videoPopup?: boolean; link?: string; videoSourceType?: "youtube" | "contentful"; videoAssetUrl?: string; videoAssetType?: string; title?: string; description?: string; }; export type VideoEmbedProps = { containerClassName?: string; autoplay?: boolean; debug?: boolean; } & VideoLinkProps; export type VideoLinkComponentProps = { videoLink?: VideoLinkProps; imageWidth?: number; imageHeight?: number; useOriginalImageAspectRatio?: boolean; isAboveTheFold?: boolean; }; export type PlayButtonProps = { isHovered?: boolean; containerClassName?: string; };