import { type SpreadsheetDataValidationDialogSource, type SpreadsheetDataValidationDialogValue } from './spreadsheet-data-validation'; export declare function SpreadsheetDataValidationDialog({ source, restoreFocusTarget, onApply, onClose, onRemove, onValidate, }: { source: SpreadsheetDataValidationDialogSource; restoreFocusTarget: () => HTMLElement | null; onApply: (value: SpreadsheetDataValidationDialogValue) => boolean; onClose: () => void; onRemove: () => boolean; onValidate: (value: SpreadsheetDataValidationDialogValue) => string | null; }): import("react").JSX.Element;