import { Paragraph } from "./paragraph"; import { Table } from "./table"; export declare class Header { hasNumberings: boolean; children: (Paragraph | Table)[]; addParagraph(p: Paragraph): this; addTable(t: Table): this; }