import { FC } from '@dineug/r-html'; import { ShikiService } from '../../../services/shikiService'; export type CodeBlockProps = { value: string; lang: Parameters[1]['lang']; theme?: 'dark' | 'light'; onCopy?: (value: string) => void; }; declare const CodeBlock: FC; export default CodeBlock;