import * as Group from "./group.js"; import * as Paragraph from "./paragraph.js"; import * as Table from "./table.js"; import * as PageBreak from "./page-break.js"; export type SectionElement = Group.Group | Paragraph.Paragraph | Table.Table | PageBreak.PageBreak; export type SectionElementNoPageBreak = Exclude; export type SectionElementStyle = SectionElementNoPageBreak["style"]; export declare const SectionElementTypeNoPagebreak: string[]; export declare function isSectionElement(value: SectionElement): value is SectionElementNoPageBreak; export declare function getSectionStyle(element: SectionElement): SectionElementStyle | undefined; //# sourceMappingURL=section-element.d.ts.map