import type { SpreadsheetSortOptions } from './spreadsheet-sort'; export declare function SpreadsheetSortOptionsDialog({ value, orientationLocked, restoreFocusTarget, onApply, onClose, }: { value: SpreadsheetSortOptions; orientationLocked?: boolean; restoreFocusTarget: () => HTMLElement | null; onApply: (value: SpreadsheetSortOptions) => void; onClose: () => void; }): import("react").JSX.Element;