import { Extension } from "@tiptap/core"; import { PluginKey } from "@tiptap/pm/state"; export interface FixedChannelPasteOptions { /** * Channels that have fixed element structure (like PushEditor, SMS, Inbox) * For these channels, multi-element paste should be converted to merged text */ fixedChannels?: string[]; } export declare const FixedChannelPastePlugin: PluginKey; export declare const FixedChannelPaste: Extension;