/// import { ReactMarkdownOptions } from "react-markdown/lib/react-markdown"; /** * Properties for the {@link Markdown} component. * @group Components */ export interface MarkdownProps { children: string; } /** * Render markdown with a few useful presets. * @see {@link https://github.com/remarkjs/react-markdown | React Markdown GitHub} for more info. * @group Components */ export declare function Markdown({ children, components, remarkPlugins, ...rest }: ReactMarkdownOptions): JSX.Element; //# sourceMappingURL=Markdown.d.ts.map