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