import { RawCommands } from '../types.js'; declare module '@sse-editor/core' { interface Commands { selectTextblockStart: { /** * Moves the cursor to the start of current text block. */ selectTextblockStart: () => ReturnType; }; } } export declare const selectTextblockStart: RawCommands['selectTextblockStart'];