import { RawCommands } from '../types.js'; declare module '@sse-editor/core' { interface Commands { unsetAllMarks: { /** * Remove all marks in the current selection. */ unsetAllMarks: () => ReturnType; }; } } export declare const unsetAllMarks: RawCommands['unsetAllMarks'];