import type categorizer from "../../widgets/categorizer/categorizer"; import type React from "react"; export type CategorizerPromptJSON = { type: "categorizer"; options: { items: ReadonlyArray; categories: ReadonlyArray; }; userInput: { itemToCategoryMapping: ReadonlyArray; }; }; export declare const getPromptJSON: (widgetData: React.ComponentProps) => CategorizerPromptJSON;