/// import type { DynamicLayoutProps, ISection } from '../../types'; export default function EditModeSectionMatcher({ filteredSortedSection, scrollDownTargetSectionId, editingSectionId, dynamicLayoutRef, onClickEditSection }: { filteredSortedSection: ISection[]; scrollDownTargetSectionId?: number; editingSectionId?: number; dynamicLayoutRef: DynamicLayoutProps['dynamicLayoutRef']; onClickEditSection: (section: ISection) => void; }): JSX.Element;