import { RawCommands } from '../types.js'; declare module '@sse-editor/core' { interface Commands { clearContent: { /** * Clear the whole document. */ clearContent: (emitUpdate?: boolean) => ReturnType; }; } } export declare const clearContent: RawCommands['clearContent'];