import React from "react"; import { Question } from "./QualityManagement.definitions"; interface QuestionsTableProps { questions: Question[]; selectedQuestions?: Record; onToggleQuestion?: (id: string | string[]) => void; withMenu?: boolean; withCategory?: boolean; onItemsReordered?: (questions: Question[]) => void; } export declare const QuestionsTable: React.FC; export {};