declare const COMPONENT_TYPES: { SECTION: string; TITLE: string; TABLE: string; PARAGRAPH: string; IMAGE: string; TEXT: string; ROW: string; CELL: string; BREAK: string; TEMPLATE: string; }; type SpacingDataType = { before: number | string; after: number | string; lineRule: string; line: number | string; }; type CommonConfType = any; type DocxAttrsType = Record; type AttrsProcessorType = Record void>; type TableBorderConfType = { style?: any; size?: any; color?: any; }; type VNodeType = { tag?: string; data?: any; text?: string; children?: VNodeType[]; }; type ASTNodeType = { tag?: string | symbol; attrs?: Record; text?: string; value?: any; children?: ASTNodeType[]; }; export { COMPONENT_TYPES, type SpacingDataType, type DocxAttrsType, type CommonConfType, type AttrsProcessorType, type TableBorderConfType, type VNodeType, type ASTNodeType, };