import { Extension } from "@tiptap/core";
import { type MarkType } from "@tiptap/pm/model";
export interface InlineCodePluginOptions {
    markType?: null | undefined | MarkType;
}
/**
 * Uses https://github.com/curvenote/editor/tree/main/packages/prosemirror-codemark to make inline code much nicer to use.
 */
export declare const CodemarkPlugin: Extension<any, any>;
