@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
18 lines (17 loc) • 532 B
TypeScript
/// <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 {};