import { GlobalConfig, Section, VideoBannerConfig } from '../../state'; import { ISectionElementWrapper, SectionElementProps } from '../../sections'; interface Props { theme: string; section: Section & { areaName: string; }; SectionElement: React.ComponentType; SectionElementWrapper?: ISectionElementWrapper; globalConfig?: GlobalConfig; editMode?: boolean; } export default function VideoBanner({ SectionElement, SectionElementWrapper, theme, section, globalConfig, editMode, }: Props): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=video-banner.component.d.ts.map