import * as React from "react"; export type CodeBlockProps = React.ComponentProps<"div"> & { code: string; language?: string; title?: React.ReactNode; showCopy?: boolean; wrap?: boolean; lineNumbers?: boolean; highlightLines?: number[] | readonly number[]; maxHeight?: number | string; }; declare function CodeBlock({ code, language, title, showCopy, wrap, lineNumbers, highlightLines, maxHeight, className, ...props }: CodeBlockProps): React.JSX.Element; export { CodeBlock };