import type { Question } from "./assessment_builder"; export interface Plugin { type: string; validate: (question: Question) => boolean; } export declare function registerPlugin(plugin: Plugin): void; export declare function getPlugin(type: string): Plugin | undefined; export declare function validateQuestion(question: Question): boolean;