import { Editor } from './Editor'; import { TextEditor } from './TextEditor'; /** * Page object representing a diff editor */ export declare class DiffEditor extends Editor { /** * Gets the text editor corresponding to the originalside. * (The left side of the diff editor) * @returns Promise resolving to TextEditor object */ getOriginalEditor(): Promise; /** * Gets the text editor corresponding to the modified side. * (The right side of the diff editor) * @returns Promise resolving to TextEditor object */ getModifiedEditor(): Promise; }