import "./dialog.css"; interface LatexImportDialogProps { /** Called when the dialog should close (Cancel button, Escape key, or after "Copy and Close"). */ onClose: () => void; } /** * Modal dialog that lets the user paste, open, or drag-and-drop a `.tex` file, * convert it to PreTeXt, and copy the result to the clipboard. * * The dialog does not modify the editor content directly; it relies on the * user copying the output and pasting it wherever needed. */ declare const LatexImportDialog: ({ onClose, }: LatexImportDialogProps) => import("react").JSX.Element; export default LatexImportDialog;