import { Runtime } from '@spwashi/spw'; import { editor } from 'monaco-editor/esm/vs/editor/editor.api'; export declare type IEditorMouseEvent = editor.IEditorMouseEvent; /** * Creates a modifyX for the mousedown event when * a user clicks somewhere inside the editor. * * @param runtime */ export declare function useMousedownCallback(runtime: Runtime | undefined): (e: IEditorMouseEvent) => void;