import { type Recordable } from "../../../types";
/**
 * 列自动设置宽度
 *
 * ( 宽度 < minWidth ) ==> minWidth
 * ( minWidth < 宽度 < 300px )  ==> 宽度
 * ( 宽度 > 300px ) ==> 300px
 *
 * @param columns 表格列
 * @param dataSource 表格数据
 */
export declare function useAutoColsWidth(columns: Recordable[], dataSource: any[]): void;
