import type { SlickEvent, SlickGrid } from '../index.js'; import type { Column } from './index.js'; export type ColumnReorderFunction = ( grid: SlickGrid, headers: HTMLElement[], headerColumnWidthDiff: number, setColumns: (cols: C[]) => void, setupColumnResize: () => void, columns: Column[], getColumnIndex: (columnId: string) => number, uid: string, trigger: (slickEvent: SlickEvent, data?: any) => void ) => void;