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