import type inputNumber from "../../widgets/input-number/input-number"; import type React from "react"; export type InputNumberPromptJSON = { type: "input-number"; options: { simplify: string; answerType: string; }; userInput: { value: string; }; }; export declare const getPromptJSON: (widgetData: React.ComponentProps) => InputNumberPromptJSON;