import { SortType } from "../types"; declare type UseTransSortSettingParams = { sort: SortType; originColumnsMap: Map; }; declare const useTransSortSetting: (params: UseTransSortSettingParams) => SortType; export default useTransSortSetting;