import { CodeBlock, type CodeBlockProps } from '@rspress/core/theme'; export type ShikiPreProps = CodeBlockProps & React.HTMLAttributes; export function ShikiPre({ title, lang, wrapCode, lineNumbers, fold, height, containerElementClassName, codeButtonGroupProps, ...otherProps }: ShikiPreProps) { return ( {/* data-lang is a meta for SSG-MD */}
    
  );
}