import { type NodeSpec, type NodeType } from 'prosemirror-model'; import { type CoreEditor, Node } from '@kerebron/editor'; import { type CommandFactories, type CommandShortcuts } from '@kerebron/editor/commands'; export type TextAlign = 'left' | 'center' | 'right' | 'justify' | undefined; export declare class NodeParagraph extends Node { name: string; requires: string[]; getNodeSpec(): NodeSpec; getCommandFactories(editor: CoreEditor, type: NodeType): Partial; getKeyboardShortcuts(): Partial; } //# sourceMappingURL=NodeParagraph.d.ts.map