import { Plugin } from "prosemirror-state"; import { Node as ProsemirrorNode, Schema } from "prosemirror-model"; export declare const parseSnippetBlockForProsemirror: (schema: Schema, content: string) => ProsemirrorNode | null; /** Plugin for the rich-text editor that auto-detects if code was pasted and handles it specifically */ export declare const stackSnippetPasteHandler: Plugin;