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