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