import type { ElementNode } from './ElementNode'; import type { Alignable } from './interfaces'; export declare const PARAGRAPH_NODE_TYPE = "paragraph"; export interface ParagraphNode extends ElementNode, Alignable { type: typeof PARAGRAPH_NODE_TYPE; } export declare function isParagraphNode(value: any): value is ParagraphNode;