import type numericInput from "../../widgets/numeric-input/numeric-input.class"; import type React from "react"; export type NumericInputPromptJSON = { type: "numeric-input"; label: string; userInput: { value: string; }; }; export declare const getPromptJSON: (widgetData: React.ComponentProps) => NumericInputPromptJSON;