import type { ClassValue as ClassName } from 'clsx'; import React from 'react'; import type { TestIdProp } from '../../types'; import type { MarkdownRendererDensity } from './MarkdownRendererContext'; export interface MarkdownRendererProps extends TestIdProp { /** The markdown string to render */ content: string; /** Optional additional class name */ className?: ClassName; /** * Controls the visual density of the rendered markdown. * * - `'comfortable'` (default): Full-size typography and spacing, suitable for * page-level content. * - `'compact'`: Reduced typography and tighter spacing, optimised for * widget and sidebar contexts where space is constrained. */ density?: MarkdownRendererDensity; } /** * Renders GitHub Flavoured Markdown content using Overdrive design tokens and components. */ export declare const MarkdownRenderer: React.ForwardRefExoticComponent>; //# sourceMappingURL=MarkdownRenderer.d.ts.map