import { EditorView } from '@codemirror/view'; /** * Moves the cursor to each folding section, and call foldCode on the view. * @param foldings - array of folding positions * @param editorView - Editor view */ export declare function runFoldings(foldings: number[], editorView: EditorView): void;