import * as react from 'react'; import { HTMLAttributes } from 'react'; interface CodeBlockProps extends HTMLAttributes { /** Optional string content to render inside tags */ code?: string; /** When true, prepends a prompt symbol ($) before text content */ promptPrefix?: boolean; /** When false, hides the copy-to-clipboard button (default: true) */ showCopy?: boolean; } declare const CodeBlock: react.ForwardRefExoticComponent>; export { CodeBlock, type CodeBlockProps };