/// import { TerminalRendererOptions } from 'marked-terminal'; export type Props = TerminalRendererOptions & { children: string; }; export default function Markdown({ children, ...options }: Props): JSX.Element;