import { Cell, CustomPrintConfig } from '@sinoform/types'; /** * 获取单元格宽度 * @param state * @param colIdx * @param cell * @returns */ declare const getCellWidth: (state: CustomPrintConfig, colIdx: number, cell: Cell) => number; export default getCellWidth;