import { type EditorThemeClasses } from 'lexical'; export declare const LANGUAGE_ALIAS: Record; export declare const LANGUAGE_ICON: Record; export declare const X_CODE_TRANSLATIONS: { en: { seeAllLines: string; collapseCode: string; }; zh: { seeAllLines: string; collapseCode: string; }; ja: { seeAllLines: string; collapseCode: string; }; }; export declare const QUOTE_MAP: Readonly>; export declare function trimQuotes(raw: string): string; export interface CodeProps { editorTheme: EditorThemeClasses; language: string; title: string; body?: string; foldable?: string; foldthreshold?: string; } export default function Code({ editorTheme, language, title: rawTitle, body, foldable: _foldable, foldthreshold: _foldThreshold, }: CodeProps): import("react/jsx-runtime").JSX.Element;