UNPKG

@promptbook/vercel

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

16 lines (15 loc) 466 B
import type { string_markdown } from '../../../types/typeAliases'; type MarkdownContentProps = { content: string_markdown; className?: string; }; /** * Renders markdown content with support for code highlighting, math, and tables. * * @public exported from `@promptbook/components` */ export declare function MarkdownContent(props: MarkdownContentProps): import("react/jsx-runtime").JSX.Element; export {}; /** * TODO: !!! Split into multiple files */