import { TAttrs, TTokenTabular } from './index'; import { TDecimal } from "./common"; type TLines = { left?: string; right?: string; bottom?: string; top?: string; }; type TAligns = { h?: string; v?: string; w?: string; }; export declare const setColumnLines: (aligns: TAligns | null, lines: TLines) => string[]; export declare const addStyle: (attrs: any[], style: string) => Array; export declare const addHLineIntoStyle: (attrs: any[], line?: string, pos?: string) => Array; export declare const AddTd: (content: string, aligns: TAligns | null, lines: TLines, space: string, decimal?: TDecimal | null) => { res: Array; content: string; }; export declare const AddTdSubTable: (subTable: Array, aligns: TAligns, lines: TLines) => Array; export {};