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