import { Extension } from '@tiptap/core'; import { GeneralOptions } from '../../type'; declare module '@tiptap/core' { interface Commands { specialCharacter: { toggleSpecialCharacter: () => ReturnType; insertSpecialCharacter: (char: string) => ReturnType; }; } } export interface SpecialCharacterOptions extends GeneralOptions { } export declare const SpecialCharacter: Extension;