UNPKG

pdf-annotator-react

Version:
11 lines (10 loc) 285 B
import React from 'react'; import { Point } from '../types'; interface TextInputPopupProps { position: Point; onSubmit: (text: string) => void; onCancel: () => void; initialText?: string; } export declare const TextInputPopup: React.FC<TextInputPopupProps>; export {};