import type { Dispatch, SetStateAction } from 'react'; import type { SpreadsheetCellFormatPatch } from './spreadsheet-cell-format'; import type { SpreadsheetFormatCellsDialogSource, SpreadsheetFormatCellsDraft, SpreadsheetFormatCellsDraftErrors, SpreadsheetFormatCellsTabId, SpreadsheetFormatCellsTouched } from './spreadsheet-format-cells-dialog-model'; import type { SpreadsheetFormatCellsInitialFocus } from './spreadsheet-format-cells-intent'; interface PanelProps { activeTab: SpreadsheetFormatCellsTabId; idBase: string; source: SpreadsheetFormatCellsDialogSource; draft: SpreadsheetFormatCellsDraft; errors: SpreadsheetFormatCellsDraftErrors; touched: SpreadsheetFormatCellsTouched; initialFocus?: SpreadsheetFormatCellsInitialFocus; setDraft: Dispatch>; touch: (field: keyof SpreadsheetCellFormatPatch) => void; } export declare function SpreadsheetFormatCellsPanel(props: PanelProps): import("react").JSX.Element; export {};