import type { SlateEditor } from '@udecode/plate-common'; import type { Location } from 'slate'; import type { ListsSchema } from '../types'; /** * Unwraps all "list-items" in the current selection. * No lists will be left in the current selection. */ export declare function unwrapList(editor: SlateEditor, schema: ListsSchema, at?: Location | null): boolean;