import { DefaultMark, NodeType } from './types'; export declare const blockquoteNodeType: "blockquote"; export declare const blockNodeType: "block"; export declare const inlineBlockNodeType: "inlineBlock"; export declare const codeNodeType: "code"; export declare const headingNodeType: "heading"; export declare const inlineItemNodeType: "inlineItem"; export declare const itemLinkNodeType: "itemLink"; export declare const linkNodeType: "link"; export declare const listItemNodeType: "listItem"; export declare const listNodeType: "list"; export declare const paragraphNodeType: "paragraph"; export declare const rootNodeType: "root"; export declare const spanNodeType: "span"; export declare const thematicBreakNodeType: "thematicBreak"; export declare const allowedNodeTypes: ("paragraph" | "heading" | "root" | "list" | "listItem" | "thematicBreak" | "code" | "blockquote" | "block" | "inlineBlock" | "span" | "link" | "itemLink" | "inlineItem")[]; export type AllowedChildren = Record; export declare const allowedChildren: AllowedChildren; export declare const inlineNodeTypes: ("inlineBlock" | "span" | "link" | "itemLink" | "inlineItem")[]; export type AllowedAttributes = Record; export declare const allowedAttributes: AllowedAttributes; export declare const defaultMarks: DefaultMark[];