interface MarkdownViewerProps { content: string; className?: string; } /** * MarkdownViewer Component * * Renders markdown content with syntax highlighting for code blocks. * Used in the Test Cases viewer to display BDD test documentation. * * Features: * - Syntax highlighting for code blocks (using Shiki - ~25KB vs 296KB) * - GitHub Flavored Markdown (tables, strikethrough, etc.) * - Responsive typography * - Dark mode support * - Native Gherkin syntax support */ export declare function MarkdownViewer({ content, className }: MarkdownViewerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=MarkdownViewer.d.ts.map