import { Resources } from "../resources.js"; import { Atom } from "../atoms/atom.js"; import { ParagraphNumbering } from "./paragraph-numbering.js"; import * as ParagraphStyle from "../styles/paragraph-style.js"; export declare const sectionType = "Paragraph"; export type Paragraph = Resources & { readonly type: typeof sectionType; readonly styleName: string; readonly style: ParagraphStyle.ParagraphStyle; readonly numbering: ParagraphNumbering | undefined; readonly children: ReadonlyArray; }; export type ParagraphProps = Resources & { readonly styleName?: string; readonly style?: ParagraphStyle.ParagraphStyle; readonly numbering?: ParagraphNumbering; }; export declare function create(props?: ParagraphProps, children?: ReadonlyArray): Paragraph; //# sourceMappingURL=paragraph.d.ts.map