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