import { DocNodeKind, DocNode } from './DocNode'; import { DocNodeContainer, IDocNodeContainerParameters } from './DocNodeContainer'; /** * Constructor parameters for {@link DocParagraph}. */ export interface IDocParagraphParameters extends IDocNodeContainerParameters { } /** * Represents a paragraph of text, similar to a `

` element in HTML. * Like CommonMark, the TSDoc syntax uses blank lines to delineate paragraphs * instead of explicitly notating them. */ export declare class DocParagraph extends DocNodeContainer { /** * Don't call this directly. Instead use {@link TSDocParser} * @internal */ constructor(parameters: IDocParagraphParameters, childNodes?: ReadonlyArray); /** @override */ get kind(): DocNodeKind | string; } //# sourceMappingURL=DocParagraph.d.ts.map