/// 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; export {};