import * as React from "react"; import type { APIOptions } from "../types"; import type { PerseusArticle } from "@khanacademy/perseus-core"; import type { LinterContextProps } from "@khanacademy/perseus-linter"; type Props = { title?: string; /** * The Perseus Article to render. Under the hood this has been named * `json`, but it is the article. Trust me. */ json: PerseusArticle; apiOptions?: APIOptions; linterContext?: LinterContextProps; }; export declare const ArticleRendererWithDebugUI: ({ title, json, apiOptions, linterContext, }: Props) => React.ReactElement; export {};