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