import { Range } from "../../../common/core/range.js"; import { Selection } from "../../../common/core/selection.js"; import { ICommand, ICursorStateComputerData, IEditOperationBuilder } from "../../../common/editorCommon.js"; import { ITextModel } from "../../../common/model.js"; export declare class InPlaceReplaceCommand implements ICommand { private readonly _editRange; private readonly _originalSelection; private readonly _text; constructor(editRange: Range, originalSelection: Selection, text: string); getEditOperations(model: ITextModel, builder: IEditOperationBuilder): void; computeCursorState(model: ITextModel, helper: ICursorStateComputerData): Selection; }