import { BlockQuoteNodeType, BulletListNodeType, CodeBlockNodeType, DocNodeType, EmMarkType, EmojiNodeType, HardBreakNodeType, HeadingNodeType, HorizontalRuleNodeType, ImageNodeType, LinkMarkType, ListItemNodeType, MarkType, MentionNodeType, MonoMarkType, NodeType, OrderedListNodeType, ParagraphNodeType, Schema, StrikeMarkType, StrongMarkType, Text } from '../'; export interface AtlassianEditorSchema extends Schema { nodes: { [name: string]: NodeType; doc: DocNodeType; paragraph: ParagraphNodeType; blockquote: BlockQuoteNodeType; ordered_list: OrderedListNodeType; bullet_list: BulletListNodeType; horizontal_rule: HorizontalRuleNodeType; heading: HeadingNodeType; list_item: ListItemNodeType; text: Text; image: ImageNodeType; hard_break: HardBreakNodeType; code_block: CodeBlockNodeType; mention: MentionNodeType; emoji: EmojiNodeType; }; marks: { [name: string]: MarkType; link: LinkMarkType; em: EmMarkType; strong: StrongMarkType; mono: MonoMarkType; strike: StrikeMarkType; }; } export declare const schema: AtlassianEditorSchema;