export default InsertionPoints; declare function InsertionPoints({ currentDocument, clickedElement, nodes, addIntervalCallback, onSaved }: { currentDocument: any; clickedElement: any; nodes: any; addIntervalCallback: any; onSaved: any; }): import("react/jsx-runtime").JSX.Element[]; declare namespace InsertionPoints { namespace propTypes { let currentDocument: PropTypes.Requireable; let clickedElement: PropTypes.Requireable; let nodes: PropTypes.Requireable; let addIntervalCallback: PropTypes.Requireable<(...args: any[]) => any>; let onSaved: PropTypes.Requireable<(...args: any[]) => any>; } } import PropTypes from 'prop-types';