import { type NodeType } from '@tiptap/pm/model'; declare module '@tiptap/core' { interface Commands { listItem: { /** * increase list indentation */ indentList: () => ReturnType; /** * decrease list indentation */ outdentList: () => ReturnType; }; toggleLists: { /** * Toggle between different list types. */ toggleLists: (listTypeOrName: string | NodeType, itemTypeOrName: string | NodeType) => ReturnType; }; } } export declare const listItem: import("ricos-types").RicosNodeExtension; //# sourceMappingURL=extension.d.ts.map