import React from 'react'; export interface CodeBlockProps { code: string; language?: string; showLineNumbers?: boolean; title?: string; description?: string; showCopy?: boolean; theme?: 'light' | 'dark'; maxHeight?: number | string; } export declare const CodeBlock: React.FC; export interface ComponentDocProps { title: string; description: string; component: React.ReactNode; code: string; cliInstall?: string; examples?: { title: string; description: string; component: React.ReactNode; code: string; }[]; props?: { name: string; type: string; description: string; required?: boolean; default?: string; }[]; } export declare const ComponentDoc: React.FC; export default ComponentDoc;