import * as React from "react"; import { Tag, TagGroup } from "../HighlightWidgetPlugin"; interface Props { anchorPosition: { x: number; y: number; }; anchorHeight: number; createTag: (options: { groupId: string | null; title: string; }) => Promise; currentTags: Tag[]; onAddTag: (options: { id: string; from: number; to: number; }) => void; onDismiss: () => void; onRemoveTag: (options: { id: string; from: number; to: number; }) => void; selection: { from: number; to: number; }; tagGroups: TagGroup[]; } export declare const HighlightWidget: React.SFC; export {};