import { Comment } from "./comment"; import { Paragraph } from "./paragraph"; import { Table } from "./table"; import { Hyperlink } from "./hyperlink"; type Child = Paragraph | Table | Comment | Hyperlink; export declare function build(child: Child): T; export {};