import { type PerseusPlotterUserInput, type PerseusPlotterWidgetOptions, type PlotterPublicWidgetOptions } from "@khanacademy/perseus-core"; import * as React from "react"; import type { PerseusDependenciesV2, WidgetProps } from "../../types"; type Props = WidgetProps & { labelInterval: NonNullable; picSize: NonNullable; dependencies: PerseusDependenciesV2; }; declare function getStartUserInput(options: PlotterPublicWidgetOptions): PerseusPlotterUserInput; declare function getCorrectUserInput(options: PerseusPlotterWidgetOptions): PerseusPlotterUserInput; /** * @deprecated and likely a very broken API * [LEMS-3185] do not trust serializedState */ declare function getUserInputFromSerializedState(serializedState: any): PerseusPlotterUserInput; declare const _default: { name: string; displayName: string; hidden: true; widget: React.ForwardRefExoticComponent & React.RefAttributes>; getCorrectUserInput: typeof getCorrectUserInput; getStartUserInput: typeof getStartUserInput; getUserInputFromSerializedState: typeof getUserInputFromSerializedState; }; export default _default;