import { Dialog } from "fwtoolkit"; import type { Node } from "prosemirror-model"; import type { Editor } from "../types.js"; export declare class OrderedListStartDialog { editor: Editor; dialog: InstanceType | false; dialogEl: HTMLElement | false; order: number; constructor(editor: Editor); init(): void; findOrderedList(state: { selection: { $head: import("prosemirror-model").ResolvedPos; }; }): { orderedList: Node | false; orderedListPos: number | false; }; submitForm(): void; insertDialog(): void; } //# sourceMappingURL=ordered_list.d.ts.map