import { Document } from 'docx'; import { default as breakLine } from './breakLine'; import { default as image } from './image'; import { default as text } from './text/index'; import { default as title } from './title'; import { table, tableRow, tableCell } from './table/index'; import { default as paragraph } from './paragraph/index'; import { default as section } from './section/index'; declare function combineComponents(...sections: any[]): Document; export { breakLine, image, text, title, table, tableRow, tableCell, paragraph, section, combineComponents };