import DragingSelection from "./DragingSelection"; declare class TokensSelection { beginIndex: number; endIndex: number; constructor(beginIndex: number, endIndex: number); static fromDragingSelection(draging: DragingSelection): TokensSelection; } export default TokensSelection;