/// import { Context, MarkdownFeatures } from "@tripetto/runner"; /** * Parses markdown to JSX. * @param md Specifies the markdown string to parse. * @param context Reference to the context. * @param lineBreaks Specifies if line breaks should be emitted (default is `true`). * @param features Specifies the markdown features to parse (defaults to `MarkdownFeatures.Formatting | MarkdownFeatures.Hyperlinks`). */ export declare function markdownifyToJSX( md: string, context?: Context, lineBreaks?: boolean, features?: MarkdownFeatures, variables?: string ): JSX.Element;