import * as React from "react"; import type { APIOptions } from "../types"; import type { PerseusItem, ShowSolutions } from "@khanacademy/perseus-core"; import type { LinterContextProps } from "@khanacademy/perseus-linter"; type Props = { title?: string; item: PerseusItem; apiOptions?: APIOptions; linterContext?: LinterContextProps; reviewMode?: boolean; showSolutions?: ShowSolutions; }; /** * ServerItemRendererWithDebugUI is a component that renders a Perseus item with debug UI controls */ export declare const ServerItemRendererWithDebugUI: ({ title, item, apiOptions, linterContext, reviewMode, showSolutions, }: Props) => React.ReactElement; export {};