UNPKG

pdf-annotator-react

Version:
14 lines (13 loc) 429 B
import React from 'react'; import { Point } from '../types'; import { TagInterface } from 'lingapp-revisao-redacao'; 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 {};