1export enum TableLayout { 2 Auto = 'auto', 3 Fixed = 'fixed', 4} 5 6export type TextAlign = 'left' | 'right' | 'center' | 'justify'; 7