import { Ref } from 'vue';
import { ColumnItem, ColWidthItem } from '../type';
declare type SetColsWidth = (column: ColumnItem[], width: number, border: boolean, tableGridRef: Ref<HTMLDivElement>) => ({
    cols: ColWidthItem[];
    tw: number;
});
declare const setColsWidth: SetColsWidth;
export default setColsWidth;
