import type { SelectRange } from 'roosterjs-editor-types'; /** * @internal * Change the editor selection to the given range * @param core The EditorCore object * @param range The range to select * @param skipSameRange When set to true, do nothing if the given range is the same with current selection * in editor, otherwise it will always remove current selection range and set to the given one. * This parameter is always treat as true in Edge to avoid some weird runtime exception. */ export declare const selectRange: SelectRange;