import { JSX } from 'react'; import { MixedSection, Section, SectionElement } from '../../../state'; /** * * A wrapper component for section elements that provides functionality required in the admin page builder. * Features include adding / deleting / reording elements. */ export default function SectionElementWrapper({ editMode, element, children, section, itemIdChain, elementIdChain, }: { editMode?: boolean; element: SectionElement; children: React.ReactNode; section: Section & { areaName: string; }; itemIdChain?: string[]; elementIdChain: string[]; }): JSX.Element; //# sourceMappingURL=section-element-wrapper.component.d.ts.map