import { EditorView } from "../../view/src"; export declare type Command = (view: EditorView) => boolean; export declare const moveCharLeft: Command; export declare const moveCharRight: Command; export declare const moveWordLeft: Command; export declare const moveWordRight: Command; export declare const moveLineUp: Command; export declare const moveLineDown: Command; export declare const moveLineStart: Command; export declare const moveLineEnd: Command; export declare const extendCharLeft: Command; export declare const extendCharRight: Command; export declare const extendWordLeft: Command; export declare const extendWordRight: Command; export declare const extendLineUp: Command; export declare const extendLineDown: Command; export declare const extendLineStart: Command; export declare const extendLineEnd: Command; export declare const selectDocStart: Command; export declare const selectDocEnd: Command; export declare const selectAll: Command; export declare const deleteCharBackward: Command; export declare const deleteCharForward: Command; export declare const pcBaseKeymap: { [key: string]: Command; }; export declare const macBaseKeymap: { [key: string]: Command; }; declare global { const os: any; } export declare const baseKeymap: { [key: string]: Command; };