import type { CB_CONTENT_PROP_YOUTUBE_TYPE } from './types'; import type { YOUTUBE_AUTOPLAY_TRIGGER_POINT } from './Youtube'; import type { Device } from '../../../../../../../DynamicLayout/sections/CustomSection/util/types'; declare function parseYoutubeContentProp(props: CB_CONTENT_PROP_YOUTUBE_TYPE, device: Device, autoplayTriggerPoint: YOUTUBE_AUTOPLAY_TRIGGER_POINT): { id: string; youtubeSrc: string; thumbnailSrc: string; cbAutoplayMode?: undefined; } | { id: string; youtubeSrc: string; thumbnailSrc: string; cbAutoplayMode: string; }; export default parseYoutubeContentProp;