import { ISectionElementWrapper, SectionElementProps } from '../../../sections'; import { MixedSection, Section } from '../../../state'; import React from 'react'; export default function ElementContainer({ editMode, SectionElement, section, baseClassName, SectionElementWrapper, itemIdChain, elementIdChain, style, }: { editMode?: boolean; section: Section & { areaName: string; }; baseClassName?: string; SectionElement: React.ComponentType; SectionElementWrapper?: ISectionElementWrapper; itemIdChain?: string[]; elementIdChain: string[]; style?: React.CSSProperties; }): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=element-container.component.d.ts.map