import type matcher from "../../widgets/matcher/matcher"; import type React from "react"; export type MatcherPromptJSON = { type: "matcher"; options: { labels: ReadonlyArray; left: ReadonlyArray; right: ReadonlyArray; orderMatters: boolean; }; userInput: { left: ReadonlyArray; right: ReadonlyArray; }; }; export type widgetDataPartial = Pick, "userInput" | "labels" | "left" | "right" | "orderMatters">; export declare const getPromptJSON: (widgetData: widgetDataPartial) => MatcherPromptJSON;