import { UnitType } from '../../Tools/UnitType'; import { ColumnAlign } from './types'; export interface ColumnInfo { align: ColumnAlign; type: UnitType; fractionDigit: number; width: number; } export declare function createColumnInfo(align: ColumnAlign, type: UnitType): { align: ColumnAlign; type: UnitType; fractionDigit: number; width: number; };