import type { DocumentProofingDialogPatch, DocumentProofingDialogSource } from './document-proofing-dialog-model'; export declare function DocumentProofingDialog({ source, restoreFocusTarget, onApply, onClose, }: { source: DocumentProofingDialogSource; restoreFocusTarget: () => HTMLElement | null; onApply: (patch: DocumentProofingDialogPatch) => boolean; onClose: () => void; }): import("react").JSX.Element;