import { Node } from '@tiptap/core'; export interface ActiveOptions { reportData?: (data: any) => void; getActivity?: (id: string) => Promise; removeActivity?: (id: string) => Promise; updateActivity?: (value: any) => Promise; submitActivity?: (value: any) => void; onExec?: (value: string) => void; codePlayerConnect?: any; } declare module '@tiptap/core' { interface Commands { active: { setQuestion: (attributes?: { id: string; language: string; include?: boolean; value?: any; }) => ReturnType; unsetQuestion: (attributes?: { language: string; }) => ReturnType; }; } } export declare const backtickInputRegex: RegExp; export declare const Active: Node;