import React from 'react'; import './CodeEditor.css'; interface CodeEditorProps { code: string; fileName?: string; filePath?: string; fileSize?: string; readOnly?: boolean; showHeader?: boolean; showStatusBar?: boolean; showLineNumbers?: boolean; maxHeight?: string; className?: string; onCopy?: () => void; } export declare const CodeEditor: React.FC; export {}; //# sourceMappingURL=CodeEditor.d.ts.map