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