UNPKG

@octopusdeploy/design-system-components

Version:
8 lines (7 loc) 329 B
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;