import type numberLine from "../../widgets/number-line/number-line"; import type React from "react"; export type NumberLinePromptJSON = { type: "number-line"; options: { range: ReadonlyArray; snapDivisions: number; }; userInput: { numLinePosition: number; numDivisions: number; rel: string; }; }; export declare const getPromptJSON: (widgetData: React.ComponentProps) => NumberLinePromptJSON;