import { StateCommand } from "@codemirror/next/state"; import { Command, KeyBinding } from "@codemirror/next/view"; export declare const cursorCharLeft: Command; export declare const cursorCharRight: Command; export declare const cursorCharForward: Command; export declare const cursorCharBackward: Command; export declare const cursorGroupLeft: Command; export declare const cursorGroupRight: Command; export declare const cursorGroupForward: Command; export declare const cursorGroupBackward: Command; export declare const cursorSyntaxLeft: Command; export declare const cursorSyntaxRight: Command; export declare const cursorLineUp: Command; export declare const cursorLineDown: Command; export declare const cursorPageUp: Command; export declare const cursorPageDown: Command; export declare const cursorLineBoundaryForward: Command; export declare const cursorLineBoundaryBackward: Command; export declare const cursorLineStart: Command; export declare const cursorLineEnd: Command; export declare const cursorMatchingBracket: StateCommand; export declare const selectMatchingBracket: StateCommand; export declare const selectCharLeft: Command; export declare const selectCharRight: Command; export declare const selectCharForward: Command; export declare const selectCharBackward: Command; export declare const selectGroupLeft: Command; export declare const selectGroupRight: Command; export declare const selectGroupForward: Command; export declare const selectGroupBackward: Command; export declare const selectSyntaxLeft: Command; export declare const selectSyntaxRight: Command; export declare const selectLineUp: Command; export declare const selectLineDown: Command; export declare const selectPageUp: Command; export declare const selectPageDown: Command; export declare const selectLineBoundaryForward: Command; export declare const selectLineBoundaryBackward: Command; export declare const selectLineStart: Command; export declare const selectLineEnd: Command; export declare const cursorDocStart: StateCommand; export declare const cursorDocEnd: StateCommand; export declare const selectDocStart: StateCommand; export declare const selectDocEnd: StateCommand; export declare const selectAll: StateCommand; export declare const selectLine: StateCommand; export declare const selectParentSyntax: StateCommand; export declare const simplifySelection: StateCommand; export declare const deleteCodePointBackward: Command; export declare const deleteCodePointForward: Command; export declare const deleteCharBackward: Command; export declare const deleteCharForward: Command; export declare const deleteGroupBackward: Command; export declare const deleteGroupForward: Command; export declare const deleteToLineEnd: Command; export declare const deleteTrailingWhitespace: StateCommand; export declare const splitLine: StateCommand; export declare const transposeChars: StateCommand; export declare const moveLineUp: StateCommand; export declare const moveLineDown: StateCommand; export declare const copyLineUp: StateCommand; export declare const copyLineDown: StateCommand; export declare const deleteLine: Command; export declare const insertNewline: StateCommand; export declare const insertNewlineAndIndent: StateCommand; export declare const indentSelection: StateCommand; export declare const indentMore: StateCommand; export declare const indentLess: StateCommand; export declare const emacsStyleKeymap: readonly KeyBinding[]; export declare const standardKeymap: readonly KeyBinding[]; export declare const defaultKeymap: readonly KeyBinding[]; //# sourceMappingURL=commands.d.ts.map