import { type SlateEditor } from '@udecode/plate-common'; import type { NodeEntry } from 'slate'; import type { Node } from 'slate'; import type { ListsSchema } from '../types'; /** * A "list-item" can have a single "list-item-text" and optionally an extra "list" as a child. */ export declare function normalizeListItemChildren(editor: SlateEditor, schema: ListsSchema, [node, path]: NodeEntry): boolean;