import { EditorState } from "prosemirror-state"; import { UxCommand } from "./constants"; export declare const uxCommands: { [UxCommand.ArrowDown]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.ArrowLeft]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.ArrowRight]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.ArrowUp]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.DeleteBackward]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.DeleteForward]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.Enter]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.EnterHard]: import("./types").Command; [UxCommand.Bold]: import("./types").Command; [UxCommand.ComposeLink]: import("./types").Command; [UxCommand.Italic]: import("./types").Command; [UxCommand.InsertHorizontalRule]: import("./types").Command; [UxCommand.InsertTable]: import("./types").Command; [UxCommand.Lift]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.PickAttachmentFile]: import("./types").Command; [UxCommand.PickAttachmentImage]: import("./types").Command; [UxCommand.Redo]: import("./types").Command; [UxCommand.SelectAll]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.Sink]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.ShiftArrowDown]: import("./types").Command; [UxCommand.ShiftArrowLeft]: import("./types").Command; [UxCommand.ShiftArrowRight]: import("./types").Command; [UxCommand.ShiftArrowUp]: import("./types").Command; [UxCommand.Strikethrough]: import("./types").Command; [UxCommand.TabBackward]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.TabForward]: (p1: EditorState, p2?: ((tr: import("prosemirror-state").Transaction) => void) | undefined, p3?: import("prosemirror-view").EditorView | undefined) => boolean; [UxCommand.ToggleBlockquote]: import("./types").Command; [UxCommand.ToggleHeading1]: import("./types").Command; [UxCommand.ToggleHeading2]: import("./types").Command; [UxCommand.ToggleOrderedList]: typeof import("./list/commands").toggleOrderedList; [UxCommand.ToggleTableHeaderCell]: import("./types").Command; [UxCommand.ToggleUnorderedList]: typeof import("./list/commands").toggleUnorderedList; [UxCommand.Underline]: import("./types").Command; [UxCommand.Undo]: import("./types").Command; };