import type image from "../../widgets/image/image.class"; import type React from "react"; export type ImagePromptJSON = { type: "image"; options: { altText: string; title: string; caption: string; imageUrl: string | null | undefined; }; }; export declare const getPromptJSON: (widgetData: React.ComponentProps) => ImagePromptJSON;