import type { SpreadsheetCellFormatPatch } from './spreadsheet-cell-format'; import { type SpreadsheetFormatCellsDialogSource } from './spreadsheet-format-cells-dialog-model'; import { type SpreadsheetFormatCellsOpenIntent } from './spreadsheet-format-cells-intent'; export declare function SpreadsheetFormatCellsDialog({ source, restoreFocusTarget, openIntent, onApply, onClose, }: { source: SpreadsheetFormatCellsDialogSource; restoreFocusTarget: () => HTMLElement | null; openIntent?: SpreadsheetFormatCellsOpenIntent; onApply: (patch: SpreadsheetCellFormatPatch) => boolean; onClose: () => void; }): import("react").JSX.Element;