/**
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 */
import { LexicalEditor, LexicalNode } from 'lexical';
import { ListItemNode, ListNode } from './';
import { ListType } from './LexicalListNode';
export declare function insertList(editor: LexicalEditor, listType: ListType): void;
export declare function mergeLists(list1: ListNode, list2: ListNode): void;
export declare function removeList(editor: LexicalEditor): void;
export declare function updateChildrenListItemValue(list: ListNode, children?: Array<LexicalNode>): void;
export declare function $handleIndent(listItemNode: ListItemNode): void;
export declare function $handleOutdent(listItemNode: ListItemNode): void;
export declare function $handleListInsertParagraph(): boolean;
