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