UNPKG

pdf-annotator-react

Version:
13 lines (12 loc) 387 B
import React from 'react'; import { Point, TagInterface } from '../types'; interface PinPopupProps { position: Point; onSubmit: (selectedTags: TagInterface[], content?: string) => void; onCancel: () => void; availableTags: TagInterface[]; initialTags?: TagInterface[]; initialContent?: string; } export declare const PinPopup: React.FC<PinPopupProps>; export {};