import React from 'react'; import { TerminalRendererOptions } from 'marked-terminal'; type Props = TerminalRendererOptions & { children: string; }; export declare const Markdown: React.FC; export {};