import { Node } from '@tiptap/core'; declare module '@tiptap/core' { interface Commands { quiz: { setQuiz: (attributes: { question: string; options: { text: string; correct: boolean; }[]; feedback?: string; }) => ReturnType; }; } } export declare const CommonPubQuiz: Node; //# sourceMappingURL=quiz.d.ts.map