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