import type { WorkDocumentLayoutFont } from '../work-document-fonts'; import { type DocumentFontDialogPatch, type DocumentFontDialogSource } from './document-font-dialog-model'; export declare function DocumentFontDialog({ source, layoutFonts, restoreFocusTarget, onApply, onClose, }: { source: DocumentFontDialogSource; layoutFonts?: readonly WorkDocumentLayoutFont[]; restoreFocusTarget: () => HTMLElement | null; onApply: (patch: DocumentFontDialogPatch) => boolean; onClose: () => void; }): import("react").JSX.Element;