import { default as React } from 'react'; interface CodeBlockProps { filename?: string; code?: string; language?: string; title?: string; className?: string; showCopy?: boolean; showHeader?: boolean; } /** * CodeBlock - A versatile code display component with syntax highlighting and copy functionality * * Can work in two modes: * 1. File loading mode: Pass `filename` to load code from `/code/${filename}` * 2. Direct code mode: Pass `code` and optionally `language` directly * * Features: * - Syntax highlighting support for multiple languages * - Copy to clipboard functionality * - Loading and error states (for file mode) * - Customizable styling and behavior */ export declare const CodeBlock: React.FC; export {}; //# sourceMappingURL=CodeBlock.d.ts.map