import { Descendant } from 'slate'; import { ParagraphElement, WithParagraphElementType } from './common'; export interface Paragraph extends WithParagraphElementType { createParagraphElement(children?: Descendant[]): ParagraphElement; } export declare const Paragraph: Paragraph;