import React from 'react'; import './style.scss'; export interface CodeDisplayProps { /** Code content to display */ code: string; /** Programming language for syntax highlighting */ language?: string; /** Show copy button */ showCopyButton?: boolean; /** Show line numbers */ showLineNumbers?: boolean; /** Maximum height before scrolling */ maxHeight?: string | number; /** Code title/filename */ title?: string; /** Custom className */ className?: string; /** Whether to wrap long lines */ wrapLines?: boolean; /** Copy button position */ copyButtonPosition?: 'top-right' | 'bottom-right'; } export declare const CodeDisplay: React.FC; //# sourceMappingURL=CodeDisplay.d.ts.map