import { default as React } from 'react'; import { Context } from '../../../core'; export type SortLocaleLabels = { sortSheet: string; sortRange: string; sortSheetByColumnAZ: string; sortSheetByColumnZA: string; sortRangeByColumnAZ: string; sortRangeByColumnZA: string; }; declare const SortPopoverContent: React.FC<{ context: Context; setContext: (updater: (draftCtx: Context) => void) => void; sortLocale: SortLocaleLabels; setOpen: React.Dispatch>; }>; export default SortPopoverContent;