/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ export default function ({ region, headerRegion, constrainTo, columnHeaderNodes, columns, rtl, index, firstFlexIndex, shareSpace, shareSpaceOnResize, initialSize, nextColumnSize, extraOffset, groupColumns, }: { region: any; headerRegion: any; constrainTo: any; columnHeaderNodes: any; columns: any; rtl: any; index: any; firstFlexIndex: any; shareSpace: any; shareSpaceOnResize: any; initialSize: any; nextColumnSize: any; extraOffset: any; groupColumns: any; }, { onResizeDragInit, onResizeDragStart, onResizeDrag, onResizeDrop, }: { onResizeDragInit?: (() => void) | undefined; onResizeDragStart?: (() => void) | undefined; onResizeDrag?: (() => void) | undefined; onResizeDrop?: (() => void) | undefined; }, event: any): void;