import { RawCommands } from '../types.js'; declare module '@sse-editor/core' { interface Commands { deleteSelection: { /** * Delete the selection, if there is one. */ deleteSelection: () => ReturnType; }; } } export declare const deleteSelection: RawCommands['deleteSelection'];