import type explanation from "../../widgets/explanation/explanation"; import type React from "react"; export type ExplanationPromptJSON = { type: "explanation"; showPrompt: string; explanation: string; }; export declare const getPromptJSON: (widgetData: React.ComponentProps) => ExplanationPromptJSON;