import type { AssignedSection } from "../core"; import type { ExamPlugin } from "../core/plugin"; export declare class SectionReferencePlugin implements ExamPlugin<{}, {}> { static readonly plugin_id = "section-reference"; readonly plugin_id = "section-reference"; readonly dependencies: never[]; renderer: { config: () => {}; initial_state: () => {}; section_right_column: (as: AssignedSection) => { right_column_id: string; tab_header: string; tab_content: string; } | undefined; }; }