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
 */
