import type labelImage from "../../widgets/label-image/label-image"; import type React from "react"; type BaseMarker = { label: string; }; type UserInputMarker = { label: string; answers?: string[]; selected?: ReadonlyArray; }; export type LabelImagePromptJSON = { type: "label-image"; options: { choices: ReadonlyArray; imageUrl: string; imageAlt: string; markers: BaseMarker[]; }; userInput: { markers: UserInputMarker[]; }; }; export declare const getPromptJSON: (widgetData: React.ComponentProps) => LabelImagePromptJSON; export {};