import type { CSSProperties, FC } from 'react'; import type { HighlightComponent, HighlightThemes, PrismTheme } from '../types/highlight'; export interface CodeBlockProps { hideLineNumbers?: boolean; Highlight: HighlightComponent; themes: HighlightThemes; children?: string; language?: string; theme?: PrismTheme; styles?: CSSProperties; } declare const CodeBlock: FC; export default CodeBlock;