import { type EditorState } from "./editor-model.js"; export type EditorEdit = (state: EditorState, width: number) => EditorState; export declare function editorEditFor(chord: string): EditorEdit | undefined; export declare function isEditorChord(chord: string): boolean;