import { Extension } from "@tiptap/core"; import { PluginKey } from "@tiptap/pm/state"; export interface FixedChannelSelectionOptions { channels: Array<"push" | "sms" | "inbox">; } declare module "@tiptap/core" { interface Commands { fixedChannelSelection: { constrainSelectionToElement: () => ReturnType; }; } } export declare const FixedChannelSelectionPlugin: PluginKey; export declare const FixedChannelSelection: Extension;