import * as React from 'react'; import type { CSSProperties, FC } from 'react'; import type { HighlightComponent, HighlightThemes, PrismTheme } from '../types/highlight'; export interface PreBlockProps { hideLineNumbers?: boolean; children: React.ReactNode | any; Highlight?: HighlightComponent; themes?: HighlightThemes; theme?: PrismTheme; styles?: CSSProperties; } declare const PreBlock: FC; export default PreBlock;