import { MarkSpec } from 'prosemirror-model'; /** * @name action_mark */ export interface ActionDefinition { type: 'action'; attrs: ActionMarkAttributes; } export interface ActionMarkAttributes extends Action { title: string; } export interface Action { key?: string; target: { receiver?: string; key: string; }; parameters?: object; } export declare const action: MarkSpec;