import { KeyText, KeyTextMap } from '../feature-key-text/types'; import { Dispatch, SetStateAction } from 'react'; export declare const reorderHandler: ({ sourceKey, targetKey, reorderIsActive, setColumnsOrder, onReorderingHeader, tableConfigKeyTextBoolean, keyText, colsWithKeyTextMap, }: { sourceKey: string; targetKey: string; reorderIsActive: boolean; setColumnsOrder: Dispatch>; onReorderingHeader?: (params: { newOrder: string[]; sourceKey: string; targetKey: string; }) => void; tableConfigKeyTextBoolean: boolean; keyText: KeyText; colsWithKeyTextMap: KeyTextMap; }) => void;