import type { UnsupportedWidget } from "./prompt-types"; export type UnsupportedWidgetPromptJSON = { type: UnsupportedWidget; message?: string; isSupported: boolean; }; export declare const getUnsupportedPromptJSON: (widgetType: UnsupportedWidget, message?: string) => { type: UnsupportedWidget; isSupported: boolean; message: string; };