import type { SlateEditor } from '@udecode/plate-common'; import type { Location } from 'slate'; import type { ListsSchema } from '../types'; /** * Increases nesting depth of all "list-items" in the current selection. * All nodes matching options.wrappableTypes in the selection will be converted to "list-items" and wrapped in a "list". * * @returns {boolean} True, if the editor state has been changed. */ export declare function increaseDepth(editor: SlateEditor, schema: ListsSchema, at?: Location | null): boolean;