import { HTMLAttributes } from 'react'; import { ComponentID } from '@teambit/component'; export declare type CodeViewProps = { componentId: ComponentID; currentFile?: string; icon?: string; } & HTMLAttributes; export declare function CodeView({ className, componentId, currentFile, icon }: CodeViewProps): JSX.Element;