import * as React from 'react'; import { ISectionConnection } from '../../../../../connectors'; export type Props = { trigger: React.ReactNode; header: React.ReactNode; sections: Array; disabled?: boolean; disablePrepandSection?: boolean; disableAppendSection?: boolean; id: string; ptrNext: string | null; ptrPrev: string | null; onDelete: (id: string, ptrPrev: string | null, ptrNext: string | null) => void; onAppend: (sectionName: string, id: string, ptrNext: string | null) => void; onPrepend: (sectionName: string, id: string, ptrPrev: string | null) => void; }; declare const SectionManagePopover: React.NamedExoticComponent; export default SectionManagePopover;