import type gradedGroupSet from "../../widgets/graded-group-set"; import type { GradedGroupPromptJSON } from "../graded-group/graded-group-ai-utils"; import type React from "react"; export type GradedGroupSetPromptJSON = { type: "graded-group-set"; options: { groupCount: number; currentGroup: GradedGroupPromptJSON; }; }; export declare const getPromptJSON: (widgetData: React.ComponentProps, activeGroupJSON: GradedGroupPromptJSON) => GradedGroupSetPromptJSON;