import type { Cell, CellStyle } from '@sinoform/types'; /** * 生成基础的cell配置信息 * * @param text 文字描述 * @param colspan 单元格合并列 * @param style 单元格样式 * @param height 单元格高度 * @param id 表单项id,用于column表单项的处理 */ declare const genCell: (text: string, colspan: number, style?: CellStyle, height?: number, id?: string) => Cell; export default genCell;