UNPKG

@promptbook/openai

Version:

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

17 lines (16 loc) 517 B
import type { string_markdown } from '../../../types/typeAliases'; type MarkdownContentProps = { content: string_markdown; className?: string; onCreateAgent?: (bookContent: string) => void; }; /** * 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 */