import "./dialog.css";
interface FullSourceModalProps {
/** The full, assembled PreTeXt source for the whole project (read-only). */
source: string;
/** Called when the dialog should close. */
onClose: () => void;
}
/**
* Read-only modal that shows the full assembled PreTeXt document for the
* project — every division resolved and `` placeholder
* expanded, wrapped in the outer ``/`` shell. This is the
* same shape a host would persist or send to the build server.
*/
declare const FullSourceModal: ({ source, onClose }: FullSourceModalProps) => import("react").JSX.Element;
export default FullSourceModal;