UNPKG

pdf-annotator-react

Version:
13 lines (12 loc) 291 B
import React from 'react'; interface CommentPopupProps { position: { x: number; y: number; }; onSubmit: (content: string) => void; onCancel: () => void; initialContent?: string; } export declare const CommentPopup: React.FC<CommentPopupProps>; export {};