/**
 * @description: sheet的head类型
 * @param {string} label 表头显示的文字
 * @param {string} prop 表头对应的字段名
 * @param {number} width 表头的宽度
 */
export type SheetHeadType = {
    label: string;
    prop: string;
    width?: number;
};
//# sourceMappingURL=index.d.ts.map