UNPKG

@promptbook/legacy-documents

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

19 lines (18 loc) 562 B
/// <reference types="react" /> import type { string_markdown } from '../../../types/string_markdown'; /** * Props for markdown content. */ type MarkdownContentProps = { content: string_markdown; className?: string; onCreateAgent?: (bookContent: string) => void; theme?: 'LIGHT' | 'DARK'; }; /** * Renders markdown content with support for code highlighting, math, and tables. * * @public exported from `@promptbook/components` */ export declare const MarkdownContent: import("react").NamedExoticComponent<MarkdownContentProps>; export {};