import { RawCommands } from '../types.js'; declare module '@sse-editor/core' { interface Commands { blur: { /** * Removes focus from the editor. */ blur: () => ReturnType; }; } } export declare const blur: RawCommands['blur'];