/// import { GlobalConfig, AnimateConfig } from '../../type'; type ConfigType = { globalConfig?: GlobalConfig; animateConfig?: AnimateConfig; itemWidth: number; lineSpeed: number; tableBodyHeight: number; w: number; h: number; }; export default function useColumnBodyAnimate(dataMemo: any[][], listRef: React.RefObject, { globalConfig, animateConfig, itemWidth, w, lineSpeed, tableBodyHeight }: ConfigType): { dataList: import("react").MutableRefObject; onMouseEnter: () => void; onMouseLeave: (e: any) => false | undefined; }; export {};