UNPKG

@lobehub/editor

Version:

A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.

9 lines (8 loc) 272 B
import { type FC } from 'react'; export interface LanguageSelectProps { /** 语言变更回调 */ onLanguageChange: (value: string) => void; /** 当前选中的语言 */ selectedLang: string; } export declare const LanguageSelect: FC<LanguageSelectProps>;