import { type ReactElement } from "react";
import type { LiteralContent } from "./literalContent";
export interface LiteralRenderOptions {
    code: "high-contrast" | "default";
    link: "high-contrast" | "default";
}
export declare const renderLiteral: (content: LiteralContent, options: LiteralRenderOptions) => ReactElement;
