import { Ref } from 'vue'; import { EmitFn2 } from '../../_utils/types'; export declare const useColumnResize: (thRefs: Ref>, emit: (event: "columnResize", dataIndex: string, width: number) => void) => { resizingColumn: Ref; columnWidth: Record; handleThMouseDown: (dataIndex: string, ev: MouseEvent) => void; handleThMouseUp: () => void; };