export declare const getEditorScrollContainer: ({ targetElement, editorRoot, }: { targetElement: HTMLElement; editorRoot?: HTMLElement | null; }) => HTMLElement | null; export default getEditorScrollContainer; declare const scrollIntoView: ({ el, editorRoot, isNativeMobile, }: { el: HTMLElement; editorRoot?: HTMLElement | null; isNativeMobile: boolean; }) => void; export { scrollIntoView };